/* Shopping — Hero carousel */
.shop-hero {
    width: 100%;
    border-radius: 40px;
    background-color: #181818;
    position: relative;
    overflow: hidden;
}
.shop-hero-slider {
    position: relative;
    height: 420px;
}
.shop-hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 80px;
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}
.shop-hero-slide._active {
    opacity: 1;
    pointer-events: auto;
}
.shop-hero-slide-text {
    display: flex;
    flex-direction: column;
    max-width: 560px;
}
.shop-hero-eyebrow {
    color: #e49a39;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}
.shop-hero-title {
    color: #FFFFFF;
    font-family: Bokonique, NotoSans, Helvetica, Arial, sans-serif;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 600;
    margin: 0 0 28px 0;
}
.shop-hero-btns {
    display: flex;
    gap: 16px;
}
.c-secondary-btn._light {
    border-color: #FFFFFF;
    color: #FFFFFF;
}
.shop-hero-slide-media {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 220px;
}
.shop-hero-icon {
    font-size: 96px;
    color: #F78323;
    opacity: 0.9;
}
.shop-hero-slide._image-only {
    padding: 0;
    display: block;
}
.shop-hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.shop-hero-stores {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 260px;
    height: auto;
}
.shop-hero-store-logo {
    height: 32px;
    width: auto;
    justify-self: center;
    filter: brightness(0%) invert(100%) grayscale(100%) contrast(20%);
}
.shop-hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}
.shop-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.35);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.2s, width 0.2s;
}
.shop-hero-dot._active {
    background-color: #F78323;
    width: 22px;
    border-radius: 4px;
}

/* Shopping — Intro heading */
.shop-intro {
    align-items: center;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 40px;
}
.shop-intro-heading {
    font-family: Bokonique, NotoSans, Helvetica, Arial, sans-serif;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 600;
    color: #181818;
    max-width: 900px;
    margin: 0 auto;
}
.shop-intro-heading .shop-intro-icon-img {
    width: 40px !important;
    height: 34px !important;
    vertical-align: middle;
    margin-left: 10px;
    display: inline-block;
}

.shop-tracking-section {
    margin-top: 40px;
    margin-bottom: 40px;
}
.shop-tracking-heading {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 10px 0 10px;
    text-align: center;
}

/* Shopping.php-ի բոլոր sections-ները (hero, marketplace marquee, tracking,
   blog) ընդգծված card-ի տեսքով, ինչպես մեղմ ֆոնով ու border-radius-ով
   "widget" — reference-ի պես, բայց ձեր brand-ի նարնջագույն երանգներով։ */
.shop-card-section {
    width: 100%;
    background: #FAFAF9;
    border: 1px solid #ECECE9;
    border-radius: 20px;
    padding: 32px 28px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
    max-width: 1180px;
}
/* Hero-ն ունի իր սեփական dark background-ը, ուստի card-ի light bg-ն
   overrides չենք անում, պարզապես radius/padding-ի consistency ապահովում ենք */
.shop-hero.shop-card-section {
    background: #0F1115;
    border: none;
    padding: 0;
    overflow: hidden;
}
/* Tracking section-ի ներսում .fold-ի հին padding/margin-ը կրճատում ենք,
   որ չկրկնապատկվի card-ի padding-ի հետ */
.shop-tracking-section.shop-card-section {
    padding: 32px 28px;
    margin-top: 0;
}
@media only screen and (max-width: 600px) {
    .shop-card-section {
        padding: 24px 18px;
        border-radius: 16px;
        margin-bottom: 20px;
    }
}

/* Tracking search input-ի border-ը default վիճակում շատ բաց էր
   (հազիվ նկատվում) — ապահովում ենք տեսանելի border նաև առանց focus-ի */
.shop-tracking-section .parcel-search-tracking-number-input.c-field {
    border: 1px solid #DCDCDC;
}

/* Stores heading (used above marquee) */
.shop-stores-heading {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin: 10px 0 10px;
}

/* Marketplace logo-ների scrolling marquee */
.shop-stores-marquee {
    overflow: hidden;
    position: relative;
    padding-top: 20px;
    padding-bottom: 60px;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.shop-stores-track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: shop-stores-scroll 25s linear infinite;
}
.shop-stores-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.shop-stores-item:hover {
    opacity: 1;
}
.shop-stores-item img {
    height: 32px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}
@keyframes shop-stores-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
@media only screen and (max-width: 600px) {
    .shop-stores-track {
        gap: 32px;
    }
    .shop-stores-item img {
        height: 24px;
        max-width: 90px;
    }
}

/* Pricing table */
.shop-pricing-heading {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 10px 0 10px;
}
.shop-pricing-table-wrapper {
    overflow-x: auto;
    max-width: 640px;
    margin: 0 auto;
}
.shop-pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.shop-pricing-table thead tr {
    background: #F78323;
}
.shop-pricing-table thead th {
    color: #fff;
    font-weight: 700;
    padding: 14px 18px;
    text-align: left;
}
.shop-pricing-table thead th:first-child {
    border-radius: 12px 0 0 0;
}
.shop-pricing-table thead th:last-child {
    border-radius: 0 12px 0 0;
}
.shop-pricing-table tbody td {
    padding: 14px 18px;
    border-bottom: 1px solid #EDEDED;
    color: #3a3a3a;
}
.shop-pricing-table tbody tr:last-child td {
    border-bottom: none;
}
.shop-pricing-table tbody tr:hover {
    background: #FFF7EE;
}
.shop-pricing-method {
    font-weight: 600;
}
.shop-pricing-rate {
    font-weight: 700;
    color: #F78323;
}
.shop-pricing-note {
    text-align: center;
    font-size: 13px;
    color: #8a8a8a;
    margin-top: 20px;
}
.shop-pricing-business-tag {
    font-size: 9px;
    font-weight: 600;
    color: #9E8060;
    background: #F5EFE6;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
@media only screen and (max-width: 600px) {
    .shop-pricing-table {
        font-size: 13px;
    }
    .shop-pricing-table thead th,
    .shop-pricing-table tbody td {
        padding: 10px 12px;
    }
}

/* "Ինչպես օգտվել" section */
.shop-how-header {
    text-align: center;
    margin-bottom: 36px;
}
.shop-how-heading {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    margin: 10px 0 10px;
}
.shop-how-subtitle {
    font-size: 15px;
    color: #6b6b6b;
    max-width: 520px;
    margin: 0 auto;
}
.shop-how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 32px;
}
.shop-how-steps-4 {
    grid-template-columns: repeat(4, 1fr);
}
.shop-how-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}
.shop-how-step-icon {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.shop-how-step-illustration {
    width: 100% !important;
    height: 100% !important;
    max-width: 110px;
    max-height: 110px;
    object-fit: contain;
    display: block;
}
.shop-how-step-icon i {
    font-size: 30px;
    color: #F78323;
}
.shop-how-step-text {
    font-size: 14px;
    color: #3a3a3a;
    line-height: 1.5;
    max-width: 260px;
}
.shop-how-footer {
    text-align: center;
    font-size: 15px;
    color: #3a3a3a;
}
.shop-how-footer-link {
    color: #F78323;
    font-weight: 700;
    text-decoration: none;
}
.shop-how-footer-link:hover {
    text-decoration: underline;
}
@media only screen and (max-width: 900px) {
    .shop-how-steps-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width: 700px) {
    .shop-how-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Responsive — hero & intro */
@media only screen and (max-width: 1000px) {
    .shop-hero-slide {
        padding: 40px;
    }
    .shop-hero-title {
        font-size: 26px;
    }
    .shop-intro-heading {
        font-size: 32px;
    }
}
@media only screen and (max-width: 800px) {
    .shop-hero-slider {
        height: auto;
        min-height: 640px;
    }
    .shop-hero-slide {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 24px;
        padding: 40px 24px 64px 24px;
    }
    .shop-hero-slide-media {
        width: 140px;
        height: 140px;
    }
    .shop-hero-icon {
        font-size: 64px;
    }
    .shop-hero-stores {
        width: 220px;
    }
    .shop-hero-btns {
        flex-direction: column;
        width: 100%;
    }
        .shop-hero-btns > a {
        text-align: center;
    }
}

@media only screen and (max-width: 600px) {
    .shop-hero-slider {
        min-height: 600px;
    }
    .shop-hero-title {
        font-size: 22px;
    }
    .shop-intro-heading {
        font-size: 26px;
    }
    .shop-intro-sub {
        font-size: 14px;
    }
}