/* ================================
   PROXYM - White & Gold Theme
   Premium E-commerce Stylesheet
   ================================ */

/* Initials avatars */
.avatar-initials {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.3px;
    flex-shrink: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}
.av-gold  { background: #d4af37; color: #111; }
.av-dark  { background: #1e2432; color: #d4af37; }
.av-slate { background: #e8ecf0; color: #374151; }

/* CSS Variables */
:root {
    --primary-gold: #D4AF37;
    --dark-gold: #B8942F;
    --light-gold: #F4E5C2;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #F5F5F5;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --border-color: #E0E0E0;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-hover: rgba(0, 0, 0, 0.15);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 8px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-gold);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.logo-image {
    height: 60px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-cart-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cart-count {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--primary-gold);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}



.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--primary-gold);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav-cta:hover {
    background-color: var(--dark-gold);
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--text-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-outline:hover {
    background-color: var(--primary-gold);
    color: var(--white);
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--text-dark);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85), rgba(184, 148, 47, 0.4));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 860px;
    padding: 0 1.5rem;
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--light-gold);
    font-weight: 300;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--dark-gold));
    border-radius: 2px;
}

/* Benefits Section */
.benefits {
    background-color: var(--light-gray);
}

.section-lead {
    max-width: 760px;
    margin: -2rem auto 2.75rem;
    text-align: center;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.why-choose-layout {
    display: grid;
    grid-template-columns: 1fr minmax(240px, 360px) 1fr;
    gap: 2.5rem;
    align-items: center;
}

.why-choose-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.why-choose-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.35rem 1.4rem;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-choose-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.why-choose-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.14);
    color: var(--primary-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    flex: 0 0 auto;
}

.why-choose-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-choose-text h3 {
    margin: 0 0 0.35rem;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.why-choose-text p {
    margin: 0;
    color: var(--text-gray);
    line-height: 1.55;
}

.why-choose-center {
    display: flex;
    justify-content: center;
}

.why-choose-image-frame {
    width: 100%;
    max-width: 360px;
    padding: 18px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.28);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08), 0 0 24px rgba(212, 175, 55, 0.12);
}

.why-choose-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

@media (max-width: 992px) {
    .why-choose-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-choose-center {
        order: -1;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}

.benefit-card {
    background: transparent;
    padding: 0;
    border-radius: 15px;
    text-align: center;
    perspective: 1000px;
    outline: none;
    height: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.benefit-card:focus-visible {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.35);
    border-radius: 16px;
}

.benefit-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: white;
    color: var(--primary-gold);
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.benefit-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.flip-card {
    width: 100%;
    height: 300px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
    transform-style: preserve-3d;
}

.benefit-card:hover .flip-card-inner,
.benefit-card:focus-within .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-face {
    position: absolute;
    inset: 0;
    border-radius: 15px;
    background-color: black;
    padding: 2.4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.flip-card-front h3 {
    margin-bottom: 0;
}

.flip-card-back {
    transform: rotateY(180deg);
}

.flip-card-back p {
    color: var(--primary-gold);
}

.benefit-card:hover .flip-card-face,
.benefit-card:focus-within .flip-card-face {
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08), 0 0 24px rgba(212, 175, 55, 0.18);
}

.benefit-card:hover .benefit-icon,
.benefit-card:focus-within .benefit-icon {
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
}

@media (max-width: 768px) {
    .flip-card {
        height: 260px;
    }
}

/* Products Grid (Homepage Featured Products) */
.featured-products .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.featured-products .product-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-products .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px var(--shadow-hover);
}

.featured-products .product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background-color: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-products .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.featured-products .product-card:hover .product-image img {
    transform: scale(1.1);
}

.featured-products .product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.featured-products .product-info {
    padding: 2rem;
}

.featured-products .product-info h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.featured-products .product-info p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}


/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.step-number {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--white);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card h3 {
    position: relative;
    display: inline-block;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.step-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--dark-gold));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
}

.step-card:hover h3 {
    color: var(--primary-gold);
}

.step-card:hover h3::after {
    transform: scaleX(1);
}

.step-card:hover .step-number {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(184, 148, 47, 0.35);
}

/* Testimonials */
.testimonials {
    background-color: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px var(--shadow);
    border-left: 4px solid var(--primary-gold);
}

.testimonial-stars {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--light-gold);
    flex-shrink: 0;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--text-dark), var(--dark-gold));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--light-gold);
}

/* About Page - Premium Corporate */
.about-page {
    background: #ffffff;
    color: #111;
}

.about-page .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.about-page .section {
    padding: 120px 0;
}

.about-page .center {
    text-align: center;
}

.about-page .center-text {
    text-align: center;
}

.about-page h1 {
    font-size: 54px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.about-page h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #111;
}

.about-page h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
}

.about-page p {
    margin-bottom: 20px;
    color: #444;
}

.about-page .about-hero {
    text-align: center;
    padding-top: 160px;
    padding-bottom: 120px;
    background: linear-gradient(to bottom, #ffffff 60%, #f9f9f9 100%);
}

.about-page .gold-line {
    width: 80px;
    height: 4px;
    background: #d4af37;
    margin: 0 auto 25px;
}

.about-page .btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #d4af37;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s ease;
}

.about-page .btn-primary:hover {
    background: #c29d2e;
}

.about-page .btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border: 1px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    border-radius: 4px;
    margin-left: 15px;
}

.about-page .grid-2,
.about-page .grid-2-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-page .grid-2-reverse > :first-child {
    order: 2;
}

.about-page .media-box {
    background: linear-gradient(135deg, #f4f4f4, #e9e9e9);
    height: 380px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    overflow: hidden;
}

.about-story-img-wrap {
    background: none;
    padding: 0;
}

.about-story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform .4s ease;
}

.about-story-img-wrap:hover .about-story-img {
    transform: scale(1.03);
}

.about-page .clean-list {
    list-style: none;
    padding-left: 0;
}

.about-page .clean-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.about-page .clean-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #d4af37;
    position: absolute;
    left: 0;
    top: 10px;
}

.about-page .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.about-page .offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-page .offer-item {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.about-page .offer-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
}

.about-page .offer-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fcf7ea;
    color: #d4af37;
    margin: 0 auto 16px;
}

.about-page .offer-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.about-page .card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    border-top: 4px solid #d4af37;
    transition: all 0.3s ease;
}

.about-page .card.large {
    padding: 40px;
}

.about-page .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.about-page .mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about-page .mv-box {
    padding: 50px;
    border: 1px solid #eee;
    border-left: 5px solid #d4af37;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
}

.about-page .alt-bg {
    background: #f8f8f8;
}

.about-page .dark {
    background: #ffffff;
    color: #111;
    padding: 120px 0;
}

.about-page .dark p {
    color: #444;
    max-width: 700px;
    margin: 0 auto 20px;
}

.about-page .dark h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.about-page + .footer {
    margin-top: 0;
}

.about-page .about-hero p {
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto 35px;
}

.about-page .btn-group {
    margin-top: 25px;
}

.about-page .address {
    margin-top: 20px;
    color: #444;
}

@media (max-width: 992px) {
    .about-page .grid-2,
    .about-page .grid-2-reverse,
    .about-page .mv-grid {
        grid-template-columns: 1fr;
    }

    .about-page h1 {
        font-size: 34px;
    }

    .about-page h2 {
        font-size: 26px;
    }

    .about-page .btn-secondary {
        display: block;
        margin: 15px auto 0;
    }
}

.about-page .section:not(:first-child) {
    border-top: 1px solid #f0f0f0;
}

/* =========================================
   PRODUCTS PAGE – PREMIUM MINIMAL LUXURY
========================================= */

.products-page {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    color: #111;
}

.products-page .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================================
   TYPOGRAPHY
========================================= */

.products-page h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.products-page p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

.products-page .section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 60px;
    letter-spacing: 0.3px;
    position: relative;
}

.products-page .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, #d4af37, #b8942f);
    border-radius: 999px;
    opacity: 0.8;
}

/* =========================================
   BUTTON
========================================= */

.products-page .btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #d4af37;
    color: #111;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.products-page .btn-primary:hover {
    background: #c29d2e;
    transform: translateY(-2px);
}

/* =========================================
   PRODUCT NAVIGATION
========================================= */

.product-search-bar {
    padding: 48px 0 0;
    background: var(--white);
}

.product-search-wrap {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}

.product-search-wrap input {
    width: 100%;
    padding: 0.8rem 2.8rem 0.8rem 1.1rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.product-search-wrap input:focus {
    border-color: var(--primary-gold);
}

.product-search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    pointer-events: none;
    opacity: 0.5;
}

.product-search-empty {
    text-align: center;
    color: var(--text-gray);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.products-page .product-nav {
    padding: 70px 0 40px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.products-page .product-tabs {
    list-style: none;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 8px;
    margin: 0;
    background: #f6f6f6;
    border-radius: 999px;
    border: 1px solid #eee;
}

.products-page .product-tabs li {
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 999px;
    color: #555;
    transition: all 0.25s ease;
}

.products-page .product-tabs li:hover {
    background: #ffffff;
    color: #111;
}

.products-page .product-tabs li.active {
    background: #d4af37;
    color: #111;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.products-page .product-tabs li:focus-visible {
    outline: 2px solid rgba(212, 175, 55, 0.7);
    outline-offset: 3px;
}

/* =========================================
   PRODUCT PANEL TRANSITION
========================================= */

.products-page .product-panel {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.35s ease, max-height 0.5s ease, transform 0.35s ease;
}

.products-page .product-panel.active {
    opacity: 1;
    max-height: 20000px;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* =========================================
   HERO LAYOUT
========================================= */

.products-page .product-hero {
    padding: 100px 0 80px;
}

.products-page .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.products-page .product-content {
    max-width: 520px;
}

/* =========================================
   PRODUCT VISUAL
========================================= */

.products-page .visual-box {
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.products-page .visual-box img,
.products-page .visual-box video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* =========================================
   HIGHLIGHTS LIST
========================================= */

.products-page .product-content ul {
    list-style: none;
    padding: 0;
    margin: 25px 0 35px;
}

.products-page .product-content ul li {
    margin-bottom: 10px;
    font-weight: 500;
    position: relative;
    padding-left: 18px;
}

.products-page .product-content ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #d4af37;
    position: absolute;
    left: 0;
    top: 8px;
}

/* =========================================
   SECTION SPACING
========================================= */

.products-page .product-section {
    padding: 100px 0;
}

.products-page .alt-bg {
    background: #f9f9f9;
}

/* =========================================
   USE CASE CARDS – ELEVATED MINIMAL
========================================= */

.products-page .card-grid.three,
.products-page .tech-grid,
.products-page .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Use Case Cards */
.products-page .card {
    background: #ffffff;
    padding: 26px 28px;
    border-radius: 18px;
    border: 1px solid #efefef;
    box-shadow: 0 14px 34px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products-page .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0,0,0,0.06);
}

.products-page .card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    padding-left: 12px;
}

.products-page .card h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 18px;
    background: linear-gradient(180deg, #d4af37, #b8942f);
    border-radius: 4px;
}

.products-page .card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* =========================================
   TECHNOLOGY BLOCKS
========================================= */

.products-page .tech-grid > div {
    background: transparent;
    padding: 0;
}

.products-page .tech-grid h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
}

.products-page .tech-grid h4::after {
    content: "";
    display: block;
    width: 32px;
    height: 2px;
    margin-top: 8px;
    background: linear-gradient(90deg, #d4af37, #b8942f);
    border-radius: 999px;
}

.products-page .tech-grid p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* =========================================
   TESTIMONIALS – PREMIUM SOFT CARDS
========================================= */

.products-page .testimonial-card {
    background: #ffffff;
    padding: 36px 40px;
    border-radius: 20px;
    border: 1px solid #f2f2f2;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.products-page .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.06);
}

.products-page .testimonial-quote {
    margin: 0 0 18px;
    font-style: italic;
    color: #444;
    line-height: 1.7;
}

.products-page .testimonial-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.products-page .testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f1e6c9;
}

.products-page .testimonial-role {
    font-style: normal;
    color: #888;
    font-size: 14px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
    .products-page .grid-2 {
        gap: 60px;
    }
}

@media (max-width: 992px) {
    .products-page .grid-2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .products-page .card-grid.three,
    .products-page .testimonial-grid,
    .products-page .tech-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .products-page h2 {
        font-size: 30px;
    }

    .products-page .product-hero {
        padding: 70px 0 50px;
    }

    .products-page .product-section {
        padding: 70px 0;
    }

    .products-page .visual-box {
        height: 340px;
    }
}

/* =========================================
   CHECKOUT PAGE
========================================= */

.checkout-page {
    padding: 80px 0;
    background: #f9f9f9;
}

.checkout-page h1 {
    text-align: center;
    margin-bottom: 30px;
}

.checkout-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.checkout-step {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-step.active {
    border-color: #d4af37;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.checkout-step .step-number {
    display: inline-block;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 6px;
}

.checkout-step .step-title {
    font-weight: 600;
}

.checkout-form {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.checkout-panel {
    display: none;
}

.checkout-panel.active {
    display: block;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 20px;
}

.form-grid .form-group {
    display: flex;
    flex-direction: column;
}

.form-grid .form-group label {
    font-weight: 600;
    margin-bottom: 8px;
}

.form-grid .form-group input,
.form-grid .form-group select,
.checkout-form input {
    padding: 12px 14px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    font-size: 15px;
}

.form-grid .form-group.full {
    grid-column: span 2;
}

.checkout-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
}

.checkout-summary {
    background: #fafafa;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.checkout-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.checkout-summary-item:last-child {
    border-bottom: none;
}

.checkout-summary .summary-meta {
    font-size: 13px;
    color: #666;
}

.checkout-summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 14px;
    font-weight: 700;
}

.checkout-empty {
    text-align: center;
    padding: 20px;
}

.checkout-success {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .checkout-steps {
        grid-template-columns: 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-grid .form-group.full {
        grid-column: span 1;
    }
    .checkout-actions {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .products-page .product-nav {
        padding: 40px 0 30px;
    }

    .products-page .product-tabs {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 0;
        background: transparent;
        border: none;
    }

    .products-page .product-tabs li {
        width: 100%;
        text-align: center;
        padding: 10px 12px;
        font-size: 14px;
        border: 1px solid #eee;
        background: #ffffff;
        border-radius: 10px;
    }

    .products-page .product-tabs li.active {
        background: #d4af37;
        color: #111;
        border-color: transparent;
        box-shadow: none;
    }
}
/* =========================================
   PRODUCT DETAILS PAGE
========================================= */

.product-detail {
    padding: 3rem 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.product-customization-grid {
    align-items: start;
}

.product-detail-actions {
    margin-top: 1rem;
}

.back-to-products {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    margin-top: -6px;
    margin-bottom: 16px;
    transition: all 0.2s ease;
}

.back-to-products:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-1px);
}

/* =========================================
   GALLERY
========================================= */

.product-gallery {
    position: relative;
}

.main-image {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 2px solid var(--border-color);
    position: relative;
    background: #fff;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(17, 17, 17, 0.6);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-nav.prev {
    left: 12px;
}

.gallery-nav.next {
    right: 12px;
}

.gallery-nav:hover {
    background: rgba(17, 17, 17, 0.8);
    transform: translateY(-50%) scale(1.05);
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
}

.thumbnail {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid var(--border-color);
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.thumbnail:hover {
    border-color: var(--primary-gold);
    transform: scale(1.05);
}

.gallery-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-gray);
    font-style: italic;
}

/* =========================================
   PRODUCT INFO
========================================= */

.product-info-detail h1 {
    margin-bottom: 1.5rem;
}

.product-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* ── Policy Pages (Privacy, Terms) ── */
.policy-page {
    padding: 80px 0;
}

.policy-content {
    max-width: 780px;
    margin: 0 auto;
}

.policy-content h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.policy-date {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 2.5rem;
}

.policy-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2rem 0 0.6rem;
}

.policy-content p,
.policy-content li {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

.policy-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-content a {
    color: var(--primary-gold);
    text-decoration: underline;
}

/* ── 404 Error Page ── */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    text-align: center;
}

.error-content {
    max-width: 500px;
    margin: 0 auto;
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.error-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.error-desc {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    background: transparent;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: #fff;
}

.product-features h3 {
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.product-features ul {
    list-style: none;
}

.product-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--text-gray);
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: 700;
}

/* =========================================
   CARD PREVIEW (BUSINESS CARDS ONLY)
========================================= */

.card-preview-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 420px;
}

.card-preview {
    width: 350px;
    height: 200px;
    position: relative;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.card-front {
    background: #000;
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-back {
    background: #111;
    color: #d4af37;
    position: relative;
}

.logo-preview {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-preview img {
    max-width: 120px;
    max-height: 80px;
}

.logo-placeholder {
    font-size: 16px;
    letter-spacing: 1px;
    color: rgba(212, 175, 55, 0.8);
    border: 1px dashed rgba(212, 175, 55, 0.5);
    padding: 10px 16px;
    border-radius: 8px;
}

.qr-placeholder {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 11px;
    letter-spacing: 2px;
    border: 1px dashed rgba(212, 175, 55, 0.6);
    padding: 14px 18px;
    border-radius: 8px;
}

.back-info {
    position: absolute;
    bottom: 18px;
    left: 18px;
}

.card-name {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.card-title {
    font-size: 14px;
    opacity: 0.7;
}

/* =========================================
   ALBUM FRAME PREVIEW
========================================= */

.album-preview-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.living-room-bg {
    width: 100%;
    max-width: 650px;
    height: 450px;
    background: linear-gradient(#f2f2f2, #e6e6e6);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.album-frame {
    transition: all 0.3s ease;
}

.album-frame.portrait {
    width: 260px;
    height: 360px;
}

.album-frame.landscape {
    width: 360px;
    height: 260px;
}

.frame-border {
    background: #ffffff;
    padding: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.frame-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.frame-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder {
    color: #888;
}

/* =========================================
   VEHICLE STICKER PREVIEW
========================================= */

.vehicle-preview-wrapper {
    display: flex;
    justify-content: flex-start;
    margin: 0;
    align-self: center;
    width: 100%;
}

.car-mockup {
    width: min(520px, 100%);
    height: clamp(190px, 32vw, 260px);
    background: linear-gradient(#444, #222);
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticker {
    width: 120px;
    height: 120px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.sticker-qr {
    font-weight: bold;
    font-size: 14px;
}

.sticker-caption {
    font-size: 11px;
    margin-top: 6px;
    opacity: 0.7;
}

/* =========================================
   FRIDGE MAGNET PREVIEW
========================================= */

.fridge-preview-wrapper {
    display: flex;
    justify-content: flex-start;
    margin: 0;
    align-self: center;
    width: 100%;
}

.fridge-mockup {
    position: relative;
    width: min(520px, 100%);
    height: clamp(260px, 40vw, 360px);
    background: linear-gradient(180deg, #e9e9e9, #dcdcdc);
    border-radius: 10px;
}

.fridge-image {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.photo-magnet {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 170px;
    height: 220px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.magnet-photo-area {
    height: 75%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.magnet-photo-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.magnet-placeholder {
    color: #888;
}

.magnet-bottom-bar {
    height: 25%;
    background: #f8f8f8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 8px;
    font-size: 11px;
}

.magnet-qr {
    font-weight: bold;
}

.pin {
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #eee, #999);
    border-radius: 50%;
    position: absolute;
}

.pin-tl { top: 8px; left: 8px; }
.pin-tr { top: 8px; right: 8px; }
.pin-bl { bottom: 8px; left: 8px; }
.pin-br { bottom: 8px; right: 8px; }

@media (max-width: 768px) {
    .vehicle-preview-wrapper,
    .fridge-preview-wrapper {
        justify-content: center;
        margin: 20px 0;
    }

    .car-mockup {
        width: 100%;
        height: clamp(170px, 45vw, 220px);
        border-radius: 16px;
    }

    .sticker {
        width: 90px;
        height: 90px;
    }

    .fridge-mockup {
        width: 100%;
        height: clamp(220px, 55vw, 300px);
        border-radius: 10px;
    }

    .photo-magnet {
        width: 130px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .car-mockup {
        height: 170px;
    }

    .sticker {
        width: 80px;
        height: 80px;
    }

    .photo-magnet {
        width: 110px;
        height: 155px;
    }
}

/* =========================================
   CUSTOMIZATION FORM
========================================= */

.customization-section {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
}

.customization-section h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

/* =========================================
   PLANS / QUANTITY
========================================= */

.plans-section {
    margin-bottom: 2.5rem;
}

.plans-section h3 {
    margin-bottom: 1.5rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.plan-card {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.plan-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.plan-card h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.plan-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.plan-card .add-to-cart {
    width: 100%;
}

.plan-card li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 0.875rem;
}

.plan-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--primary-gold);
    color: #1a1a1a;
    padding: 2px 7px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 6px;
}

.single-price-display {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 1.25rem;
}

.single-price-label {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.single-price-unit {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.quantity-cart {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.quantity-selector {
    flex: 0 0 160px;
    max-width: 160px;
}

.quantity-selector input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
}

.quantity-cart .add-to-cart {
    flex: 0 0 auto;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .main-image {
        height: 380px;
    }

    .card-preview {
        width: 300px;
        height: 180px;
    }

    .quantity-cart {
        flex-direction: column;
    }

    .quantity-cart .add-to-cart {
        width: 100%;
    }

    .quantity-selector {
        width: 100%;
        max-width: none;
    }

    .plan-card .add-to-cart {
        width: 100%;
    }
}

/* =========================================
   CART PAGE
========================================= */

.cart-page {
    padding: 3rem 0;
    background: var(--off-white);
}

.cart-page h1 {
    margin-bottom: 2rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 14px;
    border: 1px dashed var(--border-color);
}

.cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem;
    align-items: center;
}

.cart-item-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    background: var(--light-gray);
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    margin-bottom: 0.5rem;
}

.cart-item-meta {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.cart-options {
    margin: 0.5rem 0;
    padding-left: 1rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.cart-options li {
    list-style: disc;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
    min-width: 120px;
}

.cart-qty {
    width: 80px;
    padding: 0.4rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
}

.cart-item-total {
    font-weight: 600;
}

.cart-remove {
    background: transparent;
    border: none;
    color: #b00020;
    cursor: pointer;
    font-weight: 600;
}

.cart-summary {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    margin-bottom: 1.5rem;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.cart-summary-total {
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.cart-summary .btn {
    width: 100%;
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .cart-grid {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }
}

@media (max-width: 600px) {
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-item-actions {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.faq-item {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-gold);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background-color: var(--light-gray);
}

.faq-question h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 1.5rem;
    background-color: var(--white);
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-cta {
    text-align: center;
    padding: 3rem;
    background-color: var(--light-gray);
    border-radius: 15px;
}

.faq-cta h2 {
    margin-bottom: 1rem;
}

.faq-cta p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Contact */
.contact-section {
    padding: 3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-form-container h2,
.contact-info-container h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid #c3e6cb;
}

.contact-form button {
    width: 100%;
}

.contact-info-container p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    min-width: 40px;
}

.contact-item h4 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-gray);
    margin-bottom: 0.25rem;
}

.business-hours {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
}

.business-hours h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.business-hours p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.contact-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--text-dark), var(--dark-gold));
    color: var(--white);
    border-radius: 15px;
}

.contact-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-cta p {
    color: var(--light-gold);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-col h4 {
    color: var(--light-gold);
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-align: center;
    background-color: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    background-color: var(--dark-gold);
    transform: translateY(-3px);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* What We Offer Section (about page) */
.offerings {
    padding: 5rem 0;
    background: var(--white);
}

.offerings-desc {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.05rem;
    max-width: 660px;
    margin: -0.75rem auto 3rem;
    line-height: 1.75;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.offer-item {
    background: var(--off-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.offer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.09);
    border-color: var(--primary-gold);
}

.offer-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: #fff;
}

.offer-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.65rem;
}

.offer-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .offerings-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* How It Works Section */
.how-it-works {
    background-color: var(--light-gray);
    padding: 5rem 0;
}

.section-description {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.05rem;
    max-width: 640px;
    margin: -1rem auto 3rem;
    line-height: 1.75;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.25rem 1.75rem;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #fff;
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--primary-gold);
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-gold);
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}


/* Responsive Design */
@media (max-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-gallery {
        position: relative;
        top: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 8px var(--shadow);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .problem-solution,
    .mission-vision {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .quantity-cart {
        flex-direction: column;
    }

    .quantity-cart .add-to-cart {
        width: 100%;
    }
}

/* Tablet (769px – 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 75vh;
        min-height: 480px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   CHECKOUT PAGE (REFINED UI)
========================================= */

.checkout-page {
    padding: 90px 0;
    background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
}

.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
}

.checkout-subtitle {
    color: var(--text-gray);
    max-width: 680px;
}

.checkout-badge {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 600;
    color: var(--primary-gold);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.checkout-main {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.checkout-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
}

.checkout-step {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-step.active {
    border-color: var(--primary-gold);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.12);
}

.checkout-step .step-number {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.12);
    flex-shrink: 0;
}

.checkout-step .step-title {
    font-weight: 600;
}

.checkout-form {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.panel-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.form-grid .form-group label {
    font-weight: 600;
    margin-bottom: 8px;
}

.form-grid .form-group input {
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
}

.checkout-note {
    margin-top: 16px;
    color: var(--text-gray);
    font-size: 14px;
}

.checkout-note li {
    list-style: disc;
    margin-left: 18px;
    margin-bottom: 6px;
}

.checkout-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 22px;
    gap: 12px;
}

.checkout-sidebar {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.summary-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}

.summary-card h4 {
    margin-bottom: 14px;
}

.summary-note {
    background: #fff;
    border: 1px dashed var(--border-color);
    border-radius: 16px;
    padding: 18px;
    color: var(--text-gray);
}

.checkout-summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.checkout-summary-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    padding-top: 12px;
}

.checkout-empty {
    text-align: center;
    padding: 18px;
    border: 1px dashed var(--border-color);
    border-radius: 12px;
    background: var(--off-white);
}

.checkout-success {
    background: #fff;
    padding: 32px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

@media (max-width: 1024px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    .checkout-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .checkout-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .checkout-steps {
        grid-template-columns: 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .checkout-actions {
        flex-direction: column;
    }
}

/* ── Phone Input Group ─────────────────────────────────────────── */
.phone-input-group {
    display: flex;
    position: relative;
}

.country-code-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 10px;
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: 12px 0 0 12px;
    background: #f7f7f7;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.2s;
    min-width: 88px;
    height: 100%;
}

.country-code-btn:hover,
.country-code-btn.open {
    background: #efefef;
}

.cc-arrow {
    font-size: 9px;
    color: #888;
    transition: transform 0.2s;
    margin-left: 2px;
}

.country-code-btn.open .cc-arrow {
    transform: rotate(180deg);
}

.country-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 200;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.13);
    width: 260px;
    padding: 8px;
}

.country-dropdown.open {
    display: block;
}

.country-search {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 6px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.country-search:focus {
    border-color: var(--primary-gold);
}

.country-list-scroll {
    max-height: 240px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.country-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.15s;
}

.country-option:hover,
.country-option.selected {
    background: rgba(212, 175, 55, 0.10);
}

.cc-flag-img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
    display: block;
}

.country-option .cc-name {
    flex: 1;
    color: var(--text-dark, #222);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.country-option .cc-code {
    color: #888;
    font-size: 12px;
    flex-shrink: 0;
}

.phone-number-input {
    flex: 1;
    border-radius: 0 12px 12px 0 !important;
    border-left-color: transparent !important;
}

.phone-number-input:focus {
    border-left-color: var(--primary-gold, #d4af37) !important;
}

/* ── Address country selector ──────────────────────────────────── */
.addr-country-wrap {
    position: relative;
}

.addr-country-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    font-size: 15px;
    text-align: left;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.addr-country-btn:hover,
.addr-country-btn.open {
    border-color: var(--primary-gold);
}

.addr-country-dropdown {
    width: 100%;
}

/* ── Terms & Conditions checkbox ───────────────────────────────── */
.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: #fafafa;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-gray, #555);
}

.terms-checkbox input[type="checkbox"] {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--primary-gold);
    cursor: pointer;
}

.terms-checkbox a {
    color: var(--primary-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.terms-checkbox a:hover {
    opacity: 0.8;
}

/* ── City / State "Other" secondary select ──────────────────────── */
.other-select {
    width: 100%;
    margin-top: 7px;
    padding: 8px 12px;
    border: 1px dashed var(--border-color);
    border-radius: 8px;
    font-size: 13px;
    background: #fafafa;
    cursor: pointer;
    color: #888;
    box-sizing: border-box;
    transition: border-color 0.2s, color 0.2s;
}

.other-select:focus {
    outline: none;
    border-color: var(--primary-gold);
    color: #333;
}

/* ── Featured Products – Scroll Float-In ───────────────────────── */
.featured-products {
    padding: 5rem 0 6rem;
    background: var(--white);
}

.featured-products .container {
    max-width: 1400px;
}

.fp-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

/* ── Card base ──────────────────────────────────────────────────── */
.fp-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    border: 1.5px solid var(--border-color);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(44px);
    /* hover transition — active only after .fp-done is added */
    transition: transform 0.38s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.38s ease,
                border-color 0.28s ease;
}

/* Gold top bar sweeps left → right on hover */
.fp-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--dark-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.38s ease;
}

.fp-card {
    position: relative;
}

/* ── Scroll entrance animation ──────────────────────────────────── */
@keyframes fp-rise {
    from { opacity: 0; transform: translateY(44px); }
    to   { opacity: 1; transform: translateY(0);    }
}

.fp-card.fp-visible {
    animation: fp-rise 0.62s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* ── Hover (enabled after animation completes via .fp-done) ─────── */
.fp-card.fp-done {
    opacity: 1;
    transform: translateY(0);
}

.fp-card.fp-done:hover {
    transform: translateY(-12px);
    border-color: var(--primary-gold);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12),
                0 0 0 1.5px var(--primary-gold);
}

.fp-card.fp-done:hover::before {
    transform: scaleX(1);
}

/* ── Badge ──────────────────────────────────────────────────────── */
.fp-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-gold);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 1;
}

/* ── Image area ─────────────────────────────────────────────────── */
.fp-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.fp-img-wrap img {
    max-width: 78%;
    max-height: 78%;
    object-fit: contain;
    transition: transform 0.42s cubic-bezier(0.23, 1, 0.32, 1);
}

.fp-card.fp-done:hover .fp-img-wrap img {
    transform: scale(1.1);
}

/* ── Info ───────────────────────────────────────────────────────── */
.fp-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.3rem 1.3rem 1.4rem;
}

.fp-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
}

.fp-info p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.55;
    flex: 1;
}

.fp-cta {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-gold);
    transition: color 0.22s ease, letter-spacing 0.22s ease;
}

.fp-card.fp-done:hover .fp-cta {
    color: var(--dark-gold);
    letter-spacing: 0.02em;
}

/* ── Responsive ─────────────────────────────────────────────────── */

/* Large tablet / small desktop (≤1200px) — 4 cards */
@media (max-width: 1200px) {
    .fp-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.1rem;
    }
}

/* Tablet landscape (≤900px) — 3 cards */
@media (max-width: 900px) {
    .fp-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .fp-info {
        padding: 1.1rem 1.1rem 1.2rem;
    }
}

/* Tablet portrait (≤600px) — 2 cards */
@media (max-width: 600px) {
    .featured-products {
        padding: 3rem 0 4rem;
    }
    .fp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }
    .fp-info h3 {
        font-size: 0.95rem;
    }
    .fp-info p {
        font-size: 0.8rem;
    }
    .fp-cta {
        font-size: 0.8rem;
        margin-top: 0.75rem;
    }
}

/* Mobile (≤380px) — 1 card per row */
@media (max-width: 380px) {
    .fp-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
}
