/* ============================================
   MEHAL INTERNATIONAL LLC - PIXEL PERFECT CLONE
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --announcement-bg: rgb(43 51 47);
    --hero-bg: rgb(43 51 47);
    --body-bg: #efecec;
    --card-bg: #ffffff;
    --newsletter-bg: #2c3e38;
    --footer-bg: #2c3e38;
    --text-dark: #000000;
    --text-light: #ffffff;
    --border-color: #e5e5e5;
    --text-boxes-shadow-horizontal-offset: 0px;
    --text-boxes-shadow-vertical-offset: 4px;
    --text-boxes-shadow-blur-radius: 5px;
    --color-shadow: 37, 37, 37;
    --text-boxes-shadow-opacity: 0.85;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Trirong', serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--body-bg);
    -webkit-font-smoothing: antialiased;
}

.w-20 {
    width: 20%;
}

/* ============================================
   ANNOUNCEMENT SLIDER
   ============================================ */
.announcement-slider {
    background-color: var(--announcement-bg);
    /* padding: 0.35rem 0; */
    position: relative;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 9rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.announcement-text {
    color: var(--text-light);
    font-size: 1.4rem;

    letter-spacing: .19rem;
    margin: 0;
    text-align: center;
}

.announcement-text a {
    color: var(--text-light);
    text-decoration: none;
}

.slider-btn {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0 1rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.slider-btn:hover {
    opacity: 1;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    background-color: var(--body-bg);
    padding: 2rem 0;
    /* border-bottom: 1px solid var(--border-color); */
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-dark);
    transition: opacity 0.2s;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.icon-btn:hover {
    opacity: 0.6;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.header-icons {
    display: flex;
    gap: 1.5rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
    background-color: var(--body-bg);
    padding-bottom: 2.5rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 400;
    transition: opacity 0.2s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    opacity: 0.6;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--text-dark);
}

/* ============================================
   SEARCH MODAL
   ============================================ */
.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.search-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10rem;
}

.search-modal-content {
    background-color: var(--body-bg);
    padding: 3rem;
    border-radius: 0;
    max-width: 60rem;
    width: 100%;
    margin: 0 2rem;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid var(--text-dark);
    padding: 1rem 1.5rem;
    gap: 1rem;
}

.search-input {
    flex: 1;
    border: none;
    background: none;
    font-size: 1.6rem;
    /* font-family: 'Trirong', sans-serif; */
    outline: none;
}

.search-submit-btn,
.search-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-dark);
    font-size: 1.8rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background-color: var(--hero-bg);
    padding: 2rem 0;
    text-align: center;
}

.hero-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 400;
    /* color: rgba(255, 255, 255, 0.7); */
    color: white;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.hero-description {
    font-size: 1.6rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* ============================================
   FEATURE CARDS WITH ANGLED IMAGES
   ============================================ */
.features-section {
    padding: 6rem 0;
    background-color: var(--body-bg);
}

.feature-card {
    background-color: var(--card-bg);
    margin-bottom: 4rem;
    border: 1px solid var(--border-color);
    padding: 4rem 3rem;
}

.feature-image-wrapper {
    padding: 2rem;
    position: relative;
}

.angled-image-container {
    position: relative;
    width: 100%;
    max-width: 45rem;
    margin: 0 auto;
}

.angled-image-container.right {
    margin-left: auto;
    margin-right: 0;
}

.angled-image {
    width: 100%;
    height: auto;
    display: block;
    transform: rotate(-5deg);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.angled-image-container.right .angled-image {
    transform: rotate(5deg);
}

.angled-image-container:hover .angled-image {
    transform: rotate(0deg);
}

.feature-text {
    padding: 2rem 3rem;
}

.feature-text h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.feature-text p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #666;
    font-weight: 300;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    background-color: var(--hero-bg);
    padding: 3.25rem 0;
    text-align: center;
}

.newsletter-content {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.newsletter-content h2 {
    font-size: 4.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1rem;

}

.newsletter-content p {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    letter-spacing: 0.1rem;
}

.newsletter-input-group {
    display: flex;
    max-width: 45rem;
    margin: 0 auto;
    border: 1px solid rgb(255 255 255 / 70%);
    border-radius: 10px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--text-light);
    font-size: 1.5rem;
    /* font-family: 'Trirong', sans-serif; */
    outline: none;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.heading {
    font-size: 17px;
    font-weight: 600;
    color: rgb(190 190 189) !important;
}

.main-heading {
    font-size: 22px;
}

.newsletter-input-group button {
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    color: var(--text-light);
    font-size: 2.5rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.newsletter-input-group button:hover {
    opacity: 0.7;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    /* background-color: var(--footer-bg); */
    background-color: var(--hero-bg);
    padding: 1.8rem 0 3rem;
    color: var(--text-light);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    text-align: center;
}

.footer-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-section p {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    letter-spacing: 0.16rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section a {
    color: var(--text-light);
    text-decoration: underline;
    transition: opacity 0.2s;
    font-size: 16px;
}

.footer-section a:hover {
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-bottom p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
    text-align: start;
}

.payment-icons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    font-size: 1.3rem;
}

.copyright-year {
    margin-top: 2rem;
}

.copyright-year a {
    color: rgb(157 159 157);
    text-decoration: none !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 991px) {
    .header-wrapper {
        padding: 0 2rem;
    }

    .feature-card {
        padding: 3rem 2rem;
    }

    .feature-text {
        padding: 2rem 0;
        margin-top: 2rem;
    }

    .feature-text h2 {
        font-size: 2.4rem;
    }

    .angled-image-container,
    .angled-image-container.right {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    html {
        font-size: 56.25%;
        /* Slightly smaller base */
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .hero-section {
        padding: 5rem 0;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .features-section {
        padding: 3rem 0;
    }

    .feature-card {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }

    .feature-text h2 {
        font-size: 2.2rem;
    }

    .newsletter-section {
        padding: 5rem 0;
    }

    .newsletter-content h2 {
        font-size: 2.4rem;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-input-group button {
        width: 100%;
        padding: 1.5rem;
    }
}

@media (max-width: 575px) {
    .announcement-content {
        padding: 0 1rem;
    }

    .header-wrapper {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .feature-text {
        padding: 1.5rem 0;
    }

    .feature-text h2 {
        font-size: 2rem;
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 767px) {
    .container {
        padding: 0 1.5rem;
    }
}


/* ============================================
   BRANDS WE CARRY PAGE - EXACT MATCH
   Matching screenshot pixel-perfect
   ============================================ */

/* Brand Box Link - Remove default link styling */
.brand-box-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.brand-box-link:hover {
    text-decoration: none;
}

/* Brand Box */
.brand-box {
    background-color: #efecec;
    border: 1px solid #cacaca;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 351px;
    border-radius: 7px;
}

.brand-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* transform: translateY(-2px); */
}

/* Brand Logo Wrapper */
.brand-logo-wrapper {
    background-color: var(--card-bg);
    /* padding: 3rem 2rem; */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 351px;
    position: relative;
}

/* Background Color Variants */
.brand-logo-wrapper.ashe-red,
.brand-logo-wrapper.folgers-red,
.brand-logo-wrapper.smirnoff-red {
    background-color: #dc2626;
}

.brand-logo-wrapper.mega-orange {
    background-color: #ea580c;
}

.brand-logo-wrapper.pga-blue {
    background-color: #1e3a8a;
}

/* Brand Logo Images */
.brand-logo {
    max-width: 351px;
    max-height: 351px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.brand-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-name .arrow {
    display: inline-block;
    transition: transform 0.35s ease, opacity 0.35s ease;
    opacity: 0.6;
}

.brand-box:hover .brand-name .arrow {
    /* transform: translateX(6px); */
    /* Move the arrow */
    opacity: 1;
}


/* Brand Text Logos */
.brand-text-logo {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    /* font-family: 'Trirong', serif; */
    line-height: 1.3;
}

.brand-text-logo small {
    font-size: 1.2rem;
    display: block;
    margin-top: 0.3rem;
}

/* Color Variants */
.brand-text-logo.white-text {
    color: var(--text-light);
}


/* Brand Name Footer */
.brand-name {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
    padding: 2.2rem 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-top: 1px solid var(--border-color);
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
}

.brand-name.white-text {
    color: var(--text-light);
    border-top-color: rgba(255, 255, 255, 0.2);
}

/* .brand-name .arrow {
    font-size: 1.4rem;
    margin-left: auto;
    padding-left: 1rem;
} */

/* Responsive Design */
@media (max-width: 991px) {
    .brand-logo-wrapper {
        padding: 2.5rem 1.5rem;
        min-height: 160px;
    }

    .brand-text-logo {
        font-size: 2.2rem;
    }

    .brand-text-logo.game-nine {
        font-size: 6rem;
    }

    .brand-text-logo.kiss-pink {
        font-size: 3.5rem;
    }

    .pga-text {
        font-size: 3rem;
    }

    .tour-text {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .brands-grid-section {
        padding: 0 0 4rem;
    }

    .brand-logo-wrapper {
        padding: 2rem 1.5rem;
        min-height: 140px;
    }

    .brand-text-logo {
        font-size: 2rem;
    }

    .brand-text-logo.game-nine {
        font-size: 5rem;
    }

    .brand-text-logo.kiss-pink {
        font-size: 3rem;
    }

    .folgers-script {
        font-size: 2.5rem;
    }

    .pga-text {
        font-size: 2.5rem;
    }

    .tour-text {
        font-size: 1.5rem;
    }

    .brand-name {
        font-size: 1.1rem;
        padding: 1rem 1.2rem;
    }

    .fisher-price-logo .fp-text {
        font-size: 1.8rem;
        padding: 0.8rem 1.5rem;
    }

    .volupa-logo .volupa-text {
        font-size: 2rem;
        padding: 0.8rem 2rem;
    }
}

@media (max-width: 575px) {
    .brand-logo-wrapper {
        padding: 1.5rem 1rem;
        min-height: 120px;
    }

    .brand-text-logo {
        font-size: 1.8rem;
    }

    .brand-text-logo.game-nine {
        font-size: 4rem;
    }

    .brand-text-logo.kiss-pink {
        font-size: 2.5rem;
    }

    .brand-name {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }
}

/* ============================================
   CONTACT PAGE - EXACT STYLING
   ============================================ */

/* Contact Form Section */
.contact-form-section {
    background-color: #efecec;
    padding: 0 0 4rem;
}

.contact-form {
    width: 94.5%;
}

.contact-input {
    font-family: 'Assistant', sans-serif;
    font-size: 1.4rem;
    padding: 1.2rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: #efecec;
    color: var(--text-dark);
    border-radius: 0.3rem;
    transition: border-color 0.2s ease;
    border-radius: 8px;
}

.contact-input {
    font-family: 'Assistant', sans-serif;
    font-size: 1.4rem;
    padding: 1.2rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: #efecec;
    color: var(--text-dark);
}

.contact-input:focus {
    border-color: rgba(37, 37, 37);
    background-color: #efecec;
    box-shadow: none;
    outline: none;
}

.contact-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.contact-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    font-family: 'Assistant', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    padding: 1rem 3rem;
    background-color: var(--text-dark);
    color: var(--text-light);
    border: none;
    border-radius: 0.3rem;
    transition: opacity 0.2s ease;
    width: auto;
}

.contact-submit-btn:hover {
    opacity: 0.8;
    background-color: var(--text-dark);
    color: var(--text-light);
}

/* Contact Info Section */
.contact-info-section {
    background-color: var(--body-bg);
    padding: 4rem 0 6rem;
}

.contact-info-title {
    font-size: 4rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.info-card {
    background-color: rgba(0, 0, 0, 0.03);
    padding: 3rem 2.5rem;
    border: 1px solid var(--border-color);
    height: 100%;
}

.info-card-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    color: rgb(89 89 89);

}

.info-card-text {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
    color: rgb(89 89 89);

}

.info-card-text a {
    color: var(--text-dark);
    text-decoration: underline;
    transition: opacity 0.2s ease;
    color: rgb(89 89 89);

}

.info-card-text a:hover {
    opacity: 0.7;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    font-size: 1.6rem;
    line-height: 1.8;
    color: rgb(89 89 89);
    margin-bottom: 1rem;
    letter-spacing: 0.16rem;
}

.info-list li:last-child {
    margin-bottom: 0;
}

.info-list a {
    color: rgb(89 89 89);
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.info-list a:hover {
    opacity: 0.7;
}

/* Alerts */
.alert {
    font-family: 'Assistant', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    border-radius: 0.3rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-form-section {
        padding: 0 0 3rem;
    }

    .contact-info-section {
        padding: 3rem 0 4rem;
    }

    .contact-info-title {
        font-size: 2.6rem;
    }

    .info-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 767px) {
    .contact-form-section {
        padding: 3rem 0 2rem;
    }

    .contact-info-section {
        padding: 2rem 0 3rem;
    }

    .contact-info-title {
        font-size: 2.4rem;
        margin-bottom: 2rem;
    }

    .info-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .info-card-title {
        font-size: 1.6rem;
    }

    .info-card-text,
    .info-list li {
        font-size: 1.3rem;
    }

    .contact-input {
        font-size: 1.3rem;
        padding: 1rem 1.2rem;
    }

    .contact-submit-btn {
        width: 100%;
        font-size: 1.4rem;
    }
}

@media (max-width: 575px) {
    .contact-info-title {
        font-size: 2.2rem;
    }

    .info-card {
        padding: 1.5rem 1.2rem;
    }
}

/*=====Sales Channels: match mehalintl spacing/height=====*/
.sales-channels-section {
    background-color: var(--body-bg);
    /* padding: 4.5rem 0 6.5rem; */
}

/* Shopify page feels slightly narrower than full container */
.sales-channels-section .container {
    max-width: 1140px;
}

/* CARD: fixed, stable height like the screenshot */
.channel-card-split {
    display: grid;
    grid-template-columns: 1fr 1fr;

    /* key: fixed height */
    height: 460px;

    background: #fff;
    border: 1px solid var(--border-color);
    overflow: hidden;

    /* spacing between cards */
    margin-bottom: 4.2rem;

    /* subtle shadow + slight round like Shopify */
    border-radius: 4px;
    /* box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08); */
    box-shadow: var(--text-boxes-shadow-horizontal-offset) var(--text-boxes-shadow-vertical-offset) var(--text-boxes-shadow-blur-radius) rgba(var(--color-shadow), var(--text-boxes-shadow-opacity));
}

/* .content-shadow{
    box-shadow: var(--text-boxes-shadow-horizontal-offset) var(--text-boxes-shadow-vertical-offset) var(--text-boxes-shadow-blur-radius) rgba(var(--color-shadow), var(--text-boxes-shadow-opacity));

} */

/* Reverse layout */
.channel-card-split.reverse .channel-split-media {
    order: 2;
}

.channel-card-split.reverse .channel-split-content {
    order: 1;
}

/* IMAGE PANEL: must fill full card height */
.channel-split-media {
    position: relative;
    height: 100%;
}

.channel-split-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* TEXT PANEL: vertically centered + controlled padding */
.channel-split-content {
    background: #efecec;

    /* key: vertical centering like the screenshot */
    display: flex;
    flex-direction: column;
    justify-content: center;

    /* key: this padding creates the same “breathing room” */
    padding: 0 6.2rem;

    border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.channel-card-split.reverse .channel-split-content {
    border-left: none;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.channel-kicker {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: -0.2rem;
}

.channel-split-title {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 1.8rem 0;
    letter-spacing: 0.2rem;
    font-family: 'Trirong', serif;
}

.channel-split-desc {
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    line-height: 1.75;
    color: rgb(94 94 94);
    margin: 0;
    max-width: 44rem;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .channel-card-split {
        grid-template-columns: 1fr;
        height: auto;
        /* let it grow on mobile */
    }

    .channel-split-media {
        height: 260px;
        /* fixed media height like Shopify stacks */
    }

    .channel-split-content {
        padding: 3rem 2.4rem;
        border-left: none !important;
        border-right: none !important;
    }

    .channel-split-title {
        font-size: 2.8rem;
    }

    .channel-card-split.reverse .channel-split-media,
    .channel-card-split.reverse .channel-split-content {
        order: initial;
    }
}

.page-title {
    font-size: 5rem;
}

.page-title-section {
    margin-left: 320px;
}


/* ============================================
   LEGO COLLECTION PAGE - EXACT MATCH
   ============================================ */

/* Collection Header */
.collection-header-section {
    background-color: #efecec;
    padding: 5rem 0 3rem;
}

.collection-title {
    font-size: 5rem;
    font-weight: 400;
    color: #000000;
    margin: 0;
    letter-spacing: 0.2rem;
    font-family: 'Trirong', serif;
}

/* Filter and Sort Bar */
.filter-sort-section {
    background-color: #efecec;
    padding: 0 0 3rem;
}

.filter-sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.filter-group,
.sort-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.filter-label,
.sort-label {
    font-size: 1.4rem;
    color: #000000;
    font-weight: 400;
}

.filter-btn,
.sort-btn {
    background: transparent;
    border: none;
    font-size: 1.4rem;
    color: #000000;
    cursor: pointer;
    padding: 0.5rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: underline;
    transition: opacity 0.2s;
    font-family: 'Trirong', serif;
}

.filter-btn:hover,
.sort-btn:hover {
    opacity: 0.7;
}

.filter-btn svg,
.sort-btn svg {
    width: 10px;
    height: 6px;
}

.product-count {
    font-size: 1.4rem;
    color: #666666;
}

/* Products Grid */
.products-grid-section {
    background-color: #efecec;
    padding: 0 0 8rem;
}

.products-grid-section .container {
    max-width: 1200px;
}

.product-card {
    background-color: #ffffff;
    border: 1px solid #d1cfcf;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    width: 258px;
    display: flex;
    border-radius: 7px;
    flex-direction: column;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Product Image */
.product-image-wrapper {
    position: relative;
    width: 258px;
    padding-top: 322px;
    overflow: hidden;
    background-color: #efecec;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sold-out-badge {
    position: absolute;
    top: 28rem;
    left: 1rem;
    background-color: #000000;
    color: #ffffff;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    z-index: 2;
    letter-spacing: 0.05em;
}

/* Product Info */
.product-info {
    padding: 2rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #efecec;
}

.product-title {
    font-size: 1.4rem;
    font-weight: 400;
    color: rgb(37, 37, 37);
    line-height: 1.5;
    margin: 0;
    font-family: 'Trirong', serif;
    letter-spacing: 0.05em;
}

.product-title:hover {
    text-decoration: underline;
}

.product-price {
    font-size: 1.6rem;
    font-weight: 400;
    color: #000000;
    margin: 0;
    margin-top: auto;
}

/* Responsive */
@media (max-width: 991px) {
    .collection-header-section {
        padding: 4rem 0 2.5rem;
    }

    .collection-title {
        font-size: 4rem;
    }

    .filter-sort-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .collection-header-section {
        padding: 3rem 0 2rem;
    }

    .collection-title {
        font-size: 3.5rem;
    }

    .products-grid-section {
        padding: 0 0 5rem;
    }
}

/* ============================================
   ALL PRODUCTS PAGE - FILTERS & DROPDOWNS
   ============================================ */

/* Product Card Link */
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.product-card-link:hover {
    text-decoration: none;
}

/* Filter Dropdown Wrappers */
.filter-dropdown-wrapper,
.sort-dropdown-wrapper {
    position: relative;
}

/* Filter & Sort Dropdowns */
.filter-dropdown,
.sort-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: #ffffff;
    border: 1px solid #d1cfcf;
    border-radius: 0.5rem;
    padding: 1.5rem;
    min-width: 250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
}

.filter-dropdown.active,
.sort-dropdown.active {
    display: block;
}

/* Filter Dropdown Header */
.filter-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e5e5;
}

.filter-selected-count,
.filter-info {
    font-size: 1.3rem;
    color: #666666;
}

.filter-reset-btn {
    background: none;
    border: none;
    color: #000000;
    font-size: 1.3rem;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s;
}

.filter-reset-btn:hover {
    opacity: 0.7;
}

/* Filter Options */
.filter-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-size: 1.4rem;
}

.filter-option input[type="checkbox"] {
    width: 1.6rem;
    height: 1.6rem;
    cursor: pointer;
}

/* Price Filter Inputs */
.filter-price-inputs {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.price-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    border: 1px solid #d1cfcf;
    border-radius: 0.5rem;
    padding: 0.8rem 1rem;
    background: #ffffff;
}

.price-currency {
    font-size: 1.4rem;
    color: #666666;
    margin-right: 0.5rem;
}

.price-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.4rem;
    font-family: 'Trirong', serif;
    width: 100%;
}

.price-input::placeholder {
    color: #999999;
}

/* Sort Options */
.sort-dropdown {
    min-width: 200px;
}

.sort-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    cursor: pointer;
    font-size: 1.4rem;
    transition: background 0.2s;
}

.sort-option:hover {
    background: #f5f5f5;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    border-radius: 0.3rem;
}

.sort-option input[type="radio"] {
    width: 1.6rem;
    height: 1.6rem;
    cursor: pointer;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 6rem;
    padding-bottom: 2rem;
}

.pagination-btn {
    background: #ffffff;
    border: 1px solid #d1cfcf;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.pagination-btn:hover:not(:disabled) {
    background: #f5f5f5;
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-btn svg {
    width: 10px;
    height: 6px;
}

.pagination-prev svg {
    transform: rotate(90deg);
}

.pagination-next svg {
    transform: rotate(-90deg);
}

.pagination-number {
    font-size: 1.4rem;
    color: #000000;
    padding: 0.8rem 1.2rem;
    cursor: pointer;
    border-radius: 0.3rem;
    transition: background 0.2s;
}

.pagination-number:hover {
    background: #f5f5f5;
}

.pagination-number.active {
    background: #000000;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 767px) {

    .filter-dropdown,
    .sort-dropdown {
        left: auto;
        right: 0;
        min-width: 220px;
    }

    .pagination-wrapper {
        margin-top: 4rem;
    }

    .pagination-btn {
        width: 3rem;
        height: 3rem;
    }
}

@media (max-width: 575px) {

    .filter-dropdown,
    .sort-dropdown {
        position: fixed;
        left: 1rem;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        min-width: auto;
        max-width: 90vw;
    }
}


/* ============================================
   PRODUCT DETAIL PAGE - EXACT STYLING
   ============================================ */

.product-detail-section {
    background-color: #efecec;
    padding: 5rem 0 8rem;
}

/* Product Images */
.product-images-wrapper {
    position: sticky;
    top: 2rem;
}

.product-main-image-wrapper {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

.product-main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Thumbnails */
.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.thumbnail-item {
    background-color: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
    aspect-ratio: 1;
}

.thumbnail-item:hover {
    border-color: #000000;
}

.thumbnail-item.active {
    border-color: #000000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Product Info */
.product-detail-info {
    padding-left: 2rem;
}

.product-vendor {
    font-size: 1.3rem;
    color: #666666;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-detail-title {
    font-size: 3.2rem;
    font-weight: 400;
    color: #000000;
    line-height: 1.3;
    margin-bottom: 2rem;
    font-family: 'Trirong', serif;
}

/* Price */
.product-price-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.product-detail-price {
    font-size: 2rem;
    font-weight: 500;
    color: #000000;
}

.product-sold-badge {
    background-color: #000000;
    color: #ffffff;
    font-size: 1.2rem;
    padding: 0.4rem 1rem;
    border-radius: 0.3rem;
    letter-spacing: 0.05em;
}

/* Quantity Selector */
.quantity-section {
    margin-bottom: 2rem;
}

.quantity-label {
    font-size: 1.4rem;
    color: #000000;
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
}

.quantity-selector {
    display: flex;
    align-items: center;
    width: fit-content;
    border: 1px solid #d1cfcf;
    border-radius: 0.5rem;
    /* background-color: #ffffff; */
}

.quantity-btn {
    background: none;
    border: none;
    width: 4rem;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #000000;
    transition: background 0.2s;
}

.quantity-btn:hover {
    background: #f5f5f5;
}

.quantity-input {
    border: none;
    width: 6rem;
    height: 4.5rem;
    text-align: center;
    font-size: 1.6rem;
    font-family: 'Trirong', serif;
    background: transparent;
}

.quantity-input:focus {
    outline: none;
}

/* Remove number input arrows */
.quantity-input::-webkit-inner-spin-button,
.quantity-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input[type=number] {
    -moz-appearance: textfield;
}

/* Action Buttons */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* margin-bottom: 3rem; */
}

.btn-sold-out,
.btn-buy-now {
    width: 100%;
    padding: 1.5rem 2rem;
    font-size: 1.6rem;
    font-weight: 500;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Trirong', serif;
    text-transform: none;
}

.btn-sold-out {
    background-color: #e5e5e5;
    color: #999999;
    cursor: not-allowed;
}

.btn-buy-now {
    background-color: #000000;
    color: #ffffff;
}

.btn-buy-now:hover {
    background-color: #333333;
}

/* Product Description */
.product-description {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

.product-description p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #333333;
    margin: 0;
}

/* Product Features */
.product-features {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

.product-features ul {
    list-style: disc;
    padding-left: 2rem;
    margin: 0;
}

.product-features li {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 0.8rem;
}

.product-features li:last-child {
    margin-bottom: 0;
}

/* Share Button */
.product-share {
    margin-top: 2rem;
}

.share-btn {
    background: none;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.4rem;
    color: #000000;
    cursor: pointer;
    padding: 0.8rem 0;
    transition: opacity 0.2s;
}

.share-btn:hover {
    opacity: 0.7;
}

.share-btn svg {
    width: 16px;
    height: 16px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .product-detail-info {
        padding-left: 0;
        margin-top: 3rem;
    }

    .product-images-wrapper {
        position: static;
    }

    .product-detail-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 767px) {
    .product-detail-section {
        padding: 3rem 0 5rem;
    }

    .product-detail-title {
        font-size: 2.4rem;
    }

    .product-detail-price {
        font-size: 1.8rem;
    }

    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }

    .btn-sold-out,
    .btn-buy-now {
        padding: 1.3rem 1.5rem;
        font-size: 1.5rem;
    }
}

@media (max-width: 575px) {
    .product-detail-title {
        font-size: 2.2rem;
    }

    .product-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }
}

.collections-label {
    font-size: 4rem;
}

/* ============================================
   Brand Box Image Hover Zoom Animation
   ============================================ */

/* Ensure crop stays inside the logo area */
.brand-logo-wrapper {
    overflow: hidden;
    /* important for zoom containment */
}

/* Smooth zoom for logo images */
.brand-logo {
    transition: transform 0.45s ease, filter 0.45s ease;
    will-change: transform;
    transform: scale(1);
    /* baseline */
}

/* Optional: if you want placeholder (letters) to zoom too */
.brand-logo-placeholder {
    transition: transform 0.45s ease;
    will-change: transform;
    transform: scale(1);
}

/* Trigger zoom when the whole card is hovered */
.brand-box:hover .brand-logo {
    transform: scale(1.08);
    /* optional polish */
    filter: saturate(1.05);
}

.brand-box:hover .brand-logo-placeholder {
    transform: scale(1.05);
}

/* Accessibility: reduce motion preference */
@media (prefers-reduced-motion: reduce) {

    .brand-logo,
    .brand-logo-placeholder {
        transition: none;
    }
}

/* ============================================
   Brand Arrow Hover Animation
   ============================================ */

.brand-name .arrow {
    display: inline-block;
    /* margin-left: auto; */
    /* pushes arrow to the right */
    transition: transform 0.35s ease, opacity 0.35s ease;
    opacity: 0.6;
    transform: translateX(0);
}

.brand-box:hover .brand-name .arrow {
    opacity: 1;
    transform: translateX(8px);
    /* slide to the right */
}

/* Accessibility: reduce motion preference */
@media (prefers-reduced-motion: reduce) {
    .brand-name .arrow {
        transition: none;
    }
}
