/* ==========================================================================
   SEPIK LIFE SCIENCES - BRAND DESIGN SYSTEM & GLOBAL CSS
   ========================================================================== */

:root {
    --primary-gold: #c89b3c;
    --primary-gold-light: #e7c873;
    --primary-cyan: #43c6d1;
    --primary-cyan-light: #8fd7dc;
    --primary-dark: #111111;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --text-dark: #111111;
    --text-muted: #666666;
    --border-color: rgba(0, 0, 0, 0.08);
    --gold-gradient: linear-gradient(90deg, #c89b3c, #e7c873);
    --cyan-gradient: linear-gradient(90deg, #43c6d1, #8fd7dc);
    --luxury-gradient: linear-gradient(90deg, #c89b3c, #e7c873, #8fd7dc, #43c6d1);
    --dark-gradient: linear-gradient(135deg, #0b0b0b, #141414, #1d1d1d);
    --box-shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
    --box-shadow-medium: 0 15px 50px rgba(0, 0, 0, 0.08);
    --box-shadow-luxury: 0 20px 60px rgba(67, 198, 209, 0.15);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b1b1b1;
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 10px 8%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

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

.logo img {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: var(--transition-smooth);
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    text-decoration: none;
    margin: 0 12px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    position: relative;
    padding: 5px 0;
    transition: 0.3s;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--luxury-gradient);
    transition: var(--transition-smooth);
}

nav a:hover {
    color: var(--primary-gold);
}

nav a:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon-container {
    position: relative;
    cursor: pointer;
    background: var(--bg-white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.cart-icon-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.cart-icon-container svg {
    width: 20px;
    height: 20px;
    fill: var(--text-dark);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e03131;
    color: white;
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.shop-btn {
    padding: 10px 24px;
    border-radius: 50px;
    background: var(--primary-dark);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.shop-btn:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 155, 60, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: 0.3s;
}

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */

.hero-slider {
    position: relative;
    width: 100%;
    /* Fixed banner ratio = always fits at any zoom level / screen size.
       Matches the wide desktop banners (2172x724 ≈ 3:1). */
    aspect-ratio: 3 / 1;
    overflow: hidden;
    margin-top: 80px;
}

.slides {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide a,
.slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    color: #000;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.prev:hover,
.next:hover {
    background: white;
    color: var(--primary-gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* ==========================================================================
   LUXURY HEADING COMPONENT
   ========================================================================== */

.luxury-heading {
    position: relative;
    width: 100%;
    padding: 80px 8% 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.luxury-heading::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200, 155, 60, 0.08), transparent 70%);
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.luxury-badge {
    position: relative;
    z-index: 2;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(255, 248, 240, 0.9);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(200, 155, 60, 0.25);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-gold);
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.luxury-heading h2 {
    position: relative;
    z-index: 2;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.luxury-heading h2 span {
    background: var(--luxury-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 8px 20px rgba(143, 215, 220, 0.25));
}

.luxury-heading p {
    position: relative;
    z-index: 2;
    max-width: 700px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-muted);
}

/* ==========================================================================
   PRODUCTS GRID
   ========================================================================== */

.products {
    padding: 40px 8% 100px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    position: relative;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 30px;
    box-shadow: var(--box-shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-medium);
}

.product-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(200, 155, 60, 0.05), transparent 70%);
    border-radius: 50%;
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    font-size: 20px;
    margin-top: 20px;
    font-weight: 700;
    color: var(--text-dark);
    min-height: 56px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card p {
    margin-top: 10px;
    line-height: 1.6;
    color: var(--text-muted);
    font-size: 14px;
    flex-grow: 1;
}

.price-box {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.discount {
    background: #2b8a3e;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.old-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
}

.offer-text {
    font-size: 12px;
    color: #e03131;
    font-weight: 600;
    margin-top: 4px;
}

.btn-group {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn-group button,
.btn-group a {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.add-cart-btn {
    background: #ececec;
    color: var(--text-dark);
}

.add-cart-btn:hover {
    background: #e0e0e0;
}

.buy-now-btn {
    background: var(--primary-gold);
    color: white;
    box-shadow: 0 4px 15px rgba(200, 155, 60, 0.2);
}

.buy-now-btn:hover {
    background: #b58229;
    box-shadow: 0 6px 20px rgba(200, 155, 60, 0.3);
}

/* ==========================================================================
   WHY SEPIK & FEATURES
   ========================================================================== */

.why-sepik {
    padding: 100px 8%;
    background: #fdfdfd;
    text-align: center;
}

.why-top h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.why-top h2 span {
    background: var(--luxury-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-desc {
    max-width: 750px;
    margin: auto;
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.why-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: var(--box-shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.01);
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-medium);
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 8px 20px rgba(67, 198, 209, 0.2);
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   OFFER BANNER
   ========================================================================== */

.offer-banner {
    padding: 60px 8%;
    background: var(--bg-light);
}

.offer-banner img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--box-shadow-medium);
}

/* ==========================================================================
   ABOUT LUXURY & CONSULTATION
   ========================================================================== */

.about-luxury {
    padding: 100px 8%;
    background: linear-gradient(180deg, #f7f6f2 0%, #f5f5f5 100%);
}

.about-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #888;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-content h2 span {
    background: var(--luxury-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 5px 15px rgba(200, 155, 60, 0.2));
}

.about-text {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.about-features .feature-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: 0.3s;
    text-align: left;
}

.about-features .feature-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(67, 198, 209, 0.08);
}

.feature-icon {
    font-size: 28px;
}

.about-features .feature-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.about-features .feature-box p {
    font-size: 14px;
    color: var(--text-muted);
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-cyan));
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(67, 198, 209, 0.15);
    transition: 0.3s;
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(67, 198, 209, 0.25);
}

/* Consultation form box */
.consultation-box {
    padding: 45px;
    border-radius: 35px;
    background: linear-gradient(135deg, #0f9d58, #43c6d1, #8fd7dc);
    box-shadow: var(--box-shadow-luxury);
    color: white;
}

.consultation-box h3 {
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 800;
}

.consultation-box p {
    font-size: 15px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.consultation-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.consultation-box input,
.consultation-box textarea {
    width: 100%;
    padding: 15px 20px;
    border: none;
    outline: none;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    color: var(--text-dark);
    font-family: inherit;
    transition: 0.3s;
}

.consultation-box input:focus,
.consultation-box textarea:focus {
    background: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.consultation-box textarea {
    height: 120px;
    resize: none;
}

.product-select {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-select label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    cursor: pointer;
}

.product-select input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-gold);
    cursor: pointer;
}

.consultation-box button {
    padding: 16px;
    border: none;
    border-radius: 50px;
    background: var(--primary-dark);
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.consultation-box button:hover {
    background: #000;
    transform: translateY(-2px);
}

/* ==========================================================================
   CUSTOMER REVIEWS (SLIDING CAROUSEL)
   ========================================================================== */

.reviews-section {
    padding: 100px 8%;
    background: #f7f7f9;
    overflow: hidden;
}

.reviews-heading {
    text-align: center;
    margin-bottom: 60px;
}

.review-tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 40px;
    background: white;
    color: #666;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    margin-bottom: 20px;
}

.reviews-heading h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
}

.reviews-heading h2 span {
    background: var(--luxury-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reviews-heading p {
    max-width: 750px;
    margin: auto;
    font-size: 18px;
    color: var(--text-muted);
}

.reviews-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.review-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: reviewScroll 80s linear infinite;
}

.review-track:hover {
    animation-play-state: paused;
}

.review-card {
    width: 380px;
    background: var(--bg-white);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--box-shadow-soft);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-medium);
}

.stars {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fab005;
}

.review-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.review-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-card span {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-cyan);
    margin-top: auto;
}

@keyframes reviewScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   CALL TO ACTION (CTA)
   ========================================================================== */

.cta-section {
    padding: 120px 8%;
    background: radial-gradient(circle at top right, rgba(67, 198, 209, 0.05), transparent 40%),
        radial-gradient(circle at bottom left, rgba(200, 155, 60, 0.05), transparent 40%),
        var(--dark-gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.cta-tag {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.cta-content h2 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.cta-content h2 span {
    background: linear-gradient(90deg, #d4a93a, #c8d9b0, #69d2e7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 5px 15px rgba(105, 210, 231, 0.2));
}

.cta-content p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
    color: #ddd;
    line-height: 1.8;
}

.cta-trust {
    color: var(--primary-gold-light);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    border-radius: 50px;
    background: linear-gradient(90deg, #d4a93a, #c8d9b0, #69d2e7);
    color: #111;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(105, 210, 231, 0.25);
    transition: 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(105, 210, 231, 0.4);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: var(--dark-gradient);
    color: #ccc;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 8% 60px;
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr 2fr;
    gap: 50px;
}

.footer-brand img {
    width: 180px;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 13px;
    margin-bottom: 10px;
    color: #aaa;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--primary-cyan);
}

.footer-column h3,
.footer-newsletter h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    background: linear-gradient(90deg, #d4a93a, #c8d9b0, #69d2e7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column a {
    text-decoration: none;
    color: #aaa;
    margin-bottom: 12px;
    font-size: 14px;
    transition: 0.3s;
}

.footer-column a:hover {
    color: var(--primary-cyan);
    padding-left: 5px;
}

.footer-newsletter p {
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-newsletter input {
    width: 100%;
    height: 48px;
    border: none;
    outline: none;
    padding: 0 15px;
    border-radius: 30px;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-newsletter button {
    width: 100%;
    height: 48px;
    border: none;
    cursor: pointer;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    background: linear-gradient(90deg, #d4a93a, #c8d9b0, #69d2e7);
    color: #111;
    transition: 0.3s;
}

.footer-newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(105, 210, 231, 0.2);
}

.trust-strip {
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(90deg, #d4a93a, #c8d9b0, #69d2e7);
    color: #111;
}

.footer-bottom {
    padding: 25px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #090909;
}

.copyright-text {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
}

.agency-badge img {
    height: 25px;
    width: auto;
    object-fit: contain;
}

.payment-icons {
    font-size: 13px;
    color: #888;
}

/* ==========================================================================
   CART SYSTEM - SLIDE OUT DRAWER
   ========================================================================== */

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background: var(--bg-white);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    padding: 25px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 20px;
    font-weight: 700;
}

.cart-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transition: 0.3s;
}

.cart-close-btn:hover {
    background: var(--bg-light);
    color: #e03131;
}

.cart-body {
    flex-grow: 1;
    padding: 25px;
    overflow-y: auto;
}

.cart-empty-message {
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
    margin-top: 50px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 5px;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-gold);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.qty-btn {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: 0.2s;
}

.qty-btn:hover {
    background: var(--bg-light);
    border-color: #999;
}

.qty-val {
    font-size: 14px;
    font-weight: 600;
    width: 20px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    transition: 0.3s;
    padding: 5px;
}

.cart-item-remove:hover {
    color: #e03131;
}

.cart-footer {
    padding: 25px;
    border-top: 1px solid var(--border-color);
    background: #fafafa;
}

.cart-totals {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cart-totals span:first-child {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
}

.cart-totals span:last-child {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary-gold);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(200, 155, 60, 0.2);
    display: block;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}

.checkout-btn:hover {
    background: #b58229;
    box-shadow: 0 6px 20px rgba(200, 155, 60, 0.3);
}

/* Added to cart popup notification */
.popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1e1e1e;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
    display: none;
    z-index: 9999;
    font-weight: 600;
    font-size: 14px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.popup.show {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

/* ==========================================================================
   PRODUCT DETAIL PAGES
   ========================================================================== */

.product-detail-section {
    padding: 140px 8% 80px;
    background: var(--bg-white);
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Left Image Gallery */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image-container {
    background: #fdfdfd;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

.main-image-container img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.main-image-container:hover img {
    transform: scale(1.1);
}

.thumbnail-row {
    display: flex;
    gap: 15px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 8px;
    cursor: pointer;
    background: var(--bg-white);
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.thumbnail.active,
.thumbnail:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 4px 10px rgba(200, 155, 60, 0.15);
}

/* Right Purchase Panel */
.product-info-panel {
    display: flex;
    flex-direction: column;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.product-rating .stars {
    margin-bottom: 0;
    font-size: 16px;
}

.rating-count {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.product-info-panel h1 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.product-info-panel .price-box {
    border: none;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 25px;
}

.product-info-panel .new-price {
    font-size: 38px;
}

.product-info-panel .old-price {
    font-size: 22px;
}

.product-desc-short {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.purchase-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 5px;
    background: white;
}

.quantity-selector button {
    width: 35px;
    height: 35px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: 0.2s;
}

.quantity-selector button:hover {
    background: var(--bg-light);
}

.quantity-selector input {
    width: 40px;
    text-align: center;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 600;
}

.product-info-panel .btn-group {
    margin-top: 0;
    flex-grow: 1;
}

.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    background: #fafafa;
    padding: 8px 15px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Accordion details */
.product-details-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
}

.accordion-header {
    padding: 18px 25px;
    background: #fafafa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 15px;
    user-select: none;
    transition: 0.3s;
}

.accordion-header:hover {
    background: #f5f5f5;
}

.accordion-header::after {
    content: '+';
    font-size: 20px;
    font-weight: 500;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header::after {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

.accordion-item.active .accordion-content {
    padding: 20px 25px;
    max-height: 500px;
}

.accordion-content ul {
    padding-left: 20px;
    margin-top: 10px;
}

.accordion-content li {
    margin-bottom: 8px;
}

/* Customer Reviews Block */
.product-reviews-section {
    padding: 60px 8% 80px;
    background: #fafafa;
    border-top: 1px solid var(--border-color);
}

.reviews-grid-detail {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    margin-top: 40px;
}

.reviews-summary-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--box-shadow-soft);
    text-align: center;
    border: 1px solid var(--border-color);
}

.average-rating {
    font-size: 64px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.summary-stars {
    font-size: 24px;
    color: #fab005;
    margin: 15px 0 10px;
}

.summary-text {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.rating-bars {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    font-weight: 600;
}

.rating-bar-row span {
    width: 50px;
    text-align: left;
}

.rating-bar-bg {
    flex-grow: 1;
    height: 8px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: #fab005;
    border-radius: 10px;
}

.detail-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail-review-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
}

.detail-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.reviewer-name {
    font-weight: 700;
    font-size: 15px;
}

.review-date {
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

.detail-review-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Related products */
.related-products {
    padding: 80px 8% 100px;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

/* ==========================================================================
   CHECKOUT PAGE
   ========================================================================== */

.checkout-section {
    padding: 140px 8% 100px;
    background: var(--bg-light);
}

.checkout-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.checkout-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--box-shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.checkout-card h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.checkout-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-full {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 18px;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 4px rgba(67, 198, 209, 0.15);
}

.form-group textarea {
    height: 100px;
    resize: none;
}

/* Order Summary */
.checkout-summary-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: var(--box-shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 120px;
}

.checkout-summary-card h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.summary-items {
    max-height: 250px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dotted var(--border-color);
}

.summary-item-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.summary-item-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.summary-calculations {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.calc-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-muted);
}

.calc-row.free-shipping span:last-child {
    color: #2b8a3e;
    font-weight: 600;
}

.calc-row.total-row {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 8px;
}

.place-order-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;
    background: var(--primary-gold);
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(200, 155, 60, 0.2);
    margin-top: 20px;
}

.place-order-btn:hover {
    background: #b58229;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 155, 60, 0.3);
}

/* ==========================================================================
   RAZORPAY INTERACTIVE PAYMENT GATEWAY MODAL
   ========================================================================== */

.razorpay-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.razorpay-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.razorpay-modal {
    width: 720px;
    height: 520px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: grid;
    grid-template-columns: 240px 1fr;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    position: relative;
    animation: rpScaleIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes rpScaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Razorpay Left Sidebar */
.rp-sidebar {
    background: #0f1c3f;
    color: white;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
}

.rp-merchant-details {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.rp-merchant-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #0f1c3f;
    font-size: 18px;
}

.rp-merchant-name {
    font-size: 14px;
    font-weight: 600;
}

.rp-amount-display {
    margin-top: auto;
}

.rp-amount-label {
    font-size: 11px;
    color: #8fa0c5;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.rp-amount-value {
    font-size: 32px;
    font-weight: 700;
}

.rp-amount-currency {
    font-size: 18px;
    font-weight: 500;
    color: #8fa0c5;
}

/* Razorpay Right Main Content */
.rp-main {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rp-header {
    padding: 20px 30px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rp-title {
    font-size: 16px;
    font-weight: 600;
    color: #2b3952;
}

.rp-close-btn {
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
    color: #aaa;
    display: flex;
    align-items: center;
}

.rp-close-btn:hover {
    color: #333;
}

.rp-content-area {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 180px 1fr;
    height: 380px;
}

/* Payment option selector (list) */
.rp-menu {
    border-right: 1px solid #f0f0f0;
    background: #fbfbfb;
    padding: 15px 0;
}

.rp-menu-item {
    padding: 14px 25px;
    font-size: 13px;
    font-weight: 600;
    color: #55617a;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.2s;
}

.rp-menu-item:hover {
    background: #f3f4f6;
    color: #111;
}

.rp-menu-item.active {
    background: #eff6ff;
    color: #2563eb;
    border-left: 3px solid #2563eb;
}

/* Payment inputs pane */
.rp-pane {
    padding: 30px;
    overflow-y: auto;
    display: none;
}

.rp-pane.active {
    display: block;
}

/* UPI Pane styling */
.rp-upi-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.rp-upi-btn {
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    gap: 8px;
    transition: 0.2s;
}

.rp-upi-btn:hover {
    border-color: #2563eb;
    background: #f9fbfd;
}

.rp-qr-container {
    text-align: center;
    padding: 15px;
    border: 1px dashed #ccc;
    border-radius: 8px;
    background: #fafafa;
}

.rp-qr-code {
    width: 140px;
    height: 140px;
    margin: 0 auto 10px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="10" y="10" width="20" height="20" fill="black"/><rect x="70" y="10" width="20" height="20" fill="black"/><rect x="10" y="70" width="20" height="20" fill="black"/><rect x="15" y="15" width="10" height="10" fill="white"/><rect x="75" y="15" width="10" height="10" fill="white"/><rect x="15" y="75" width="10" height="10" fill="white"/><rect x="40" y="20" width="5" height="15" fill="black"/><rect x="25" y="45" width="15" height="5" fill="black"/><rect x="50" y="50" width="20" height="20" fill="black"/><rect x="80" y="40" width="10" height="10" fill="black"/><rect x="45" y="75" width="25" height="5" fill="black"/></svg>');
    background-size: cover;
}

.rp-qr-text {
    font-size: 11px;
    color: #666;
}

/* Card Form pane */
.rp-card-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rp-input-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rp-input-group label {
    font-size: 11px;
    font-weight: 700;
    color: #777;
    text-transform: uppercase;
}

.rp-input-group input {
    padding: 10px 14px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}

.rp-input-group input:focus {
    border-color: #2563eb;
}

.rp-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Netbanking Bank select */
.rp-bank-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.rp-bank-card {
    padding: 15px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: 0.2s;
}

.rp-bank-card:hover {
    border-color: #2563eb;
    background: #f9fbfd;
}

/* Razorpay Footer / Pay Action */
.rp-footer {
    padding: 15px 30px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafafa;
}

.rp-powered-by {
    font-size: 10px;
    color: #aaa;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.rp-pay-btn {
    padding: 12px 30px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.rp-pay-btn:hover {
    background: #1d4ed8;
}

/* Simulator Controls Panel overlay */
.rp-simulator-controls {
    position: absolute;
    top: 15px;
    right: 50px;
    z-index: 10;
    display: flex;
    gap: 8px;
}

.sim-success-btn {
    background: #2b8a3e;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}

.sim-fail-btn {
    background: #e03131;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}

/* Razorpay Loader Screen overlay */
.rp-loader-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 100;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rp-loader-screen.active {
    display: flex;
}

.rp-spinner {
    width: 45px;
    height: 45px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2563eb;
    border-radius: 50%;
    animation: rpSpin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes rpSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.rp-loader-text {
    font-size: 15px;
    font-weight: 600;
    color: #2b3952;
}

/* ==========================================================================
   ORDER SUCCESS PAGE
   ========================================================================== */

.success-section {
    padding: 160px 8% 100px;
    display: flex;
    justify-content: center;
    background: var(--bg-light);
}

.success-card {
    max-width: 600px;
    width: 100%;
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--box-shadow-soft);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Success Checkmark Animation */
.success-icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: #d3f9d8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.success-icon-container svg {
    width: 40px;
    height: 40px;
    stroke: #2b8a3e;
    stroke-width: 4;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: drawCheck 0.5s ease-in-out forwards 0.2s;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.success-card h1 {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.success-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.receipt-block {
    background: #fafafa;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 35px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dotted var(--border-color);
    font-size: 14px;
}

.receipt-row:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    padding-top: 15px;
}

.receipt-label {
    color: var(--text-muted);
}

.receipt-value {
    font-weight: 600;
    color: var(--text-dark);
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-share-btn {
    width: 100%;
    padding: 16px;
    background: #25d366;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    transition: 0.3s;
    font-size: 15px;
}

.whatsapp-share-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.whatsapp-share-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.success-home-btn {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s;
}

.success-home-btn:hover {
    color: var(--text-dark);
}

/* ==========================================================================
   PRIVACY POLICY PAGE
   ========================================================================== */

.policy-section {
    padding: 140px 8% 80px;
    background: var(--bg-light);
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: var(--box-shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.policy-container h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 20px;
}

.policy-date {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 500;
}

.policy-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 35px 0 15px;
    color: var(--text-dark);
}

.policy-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.policy-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-content li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 10px;
}

/* ==========================================================================
   RESPONSIVE LAYOUT MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1200px) {
    header {
        padding: 15px 5%;
    }

    header.scrolled {
        padding: 10px 5%;
    }

    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .footer-newsletter {
        grid-column: span 3;
    }
}

@media (max-width: 991px) {
    header {
        padding: 15px 20px;
    }

    header.scrolled {
        padding: 10px 20px;
    }

    .logo img {
        height: 34px;
    }

    .header-right .shop-btn {
        display: none;
    }

    .header-right {
        gap: 15px;
    }

    nav {
        position: fixed;
        top: 64px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
        gap: 25px;
        transition: left 0.4s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        z-index: 999;
        overflow-y: auto;
    }

    nav.active {
        left: 0;
    }

    nav a {
        margin: 0;
        font-size: 18px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .luxury-heading h2 {
        font-size: 42px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .consultation-box {
        padding: 35px;
    }

    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .checkout-container {
        grid-template-columns: 1fr;
    }

    .checkout-summary-card {
        position: static;
    }

    .reviews-grid-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .razorpay-modal {
        width: 95%;
        max-width: 500px;
        height: auto;
        min-height: 500px;
        grid-template-columns: 1fr;
    }

    .rp-sidebar {
        padding: 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .rp-merchant-details {
        margin-bottom: 0;
    }

    .rp-amount-display {
        margin-top: 0;
        text-align: right;
    }

    .rp-amount-value {
        font-size: 22px;
    }

    .rp-content-area {
        grid-template-columns: 1fr;
        height: auto;
    }

    .rp-menu {
        display: flex;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 5px 0;
    }

    .rp-menu-item {
        font-size: 12px;
    }

    .rp-pane {
        padding: 20px;
    }

    .rp-simulator-controls {
        top: auto;
        bottom: 80px;
        left: 20px;
        right: auto;
    }
}

@media (max-width: 768px) {

    .hero-slider {
        width: 100%;
        /* Square mobile banners (1254x1254 = 1:1) — keeps full banner visible */
        aspect-ratio: 1 / 1;
        min-height: auto;
        margin-top: 64px;
    }

    .slides {
        height: 100%;
    }

    .slide {
        height: 100%;
        flex-shrink: 0;
    }

    .slide a,
    .slide picture {
        height: 100%;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
    }

    .prev,
    .next {
        display: none;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    .products {
        padding: 30px 15px 80px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .product-card {
        padding: 20px;
    }

    .product-card img {
        height: 220px;
    }

    .why-sepik {
        padding: 60px 15px;
    }

    .why-top h2 {
        font-size: 36px;
    }

    .why-desc {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .offer-banner {
        padding: 30px 15px;
    }

    .offer-banner img {
        border-radius: 20px;
    }

    .about-luxury {
        padding: 60px 15px;
    }

    .about-content h2 {
        font-size: 36px;
    }

    .about-features .feature-box {
        padding: 15px;
    }

    .about-features .feature-box h3 {
        font-size: 16px;
    }

    .reviews-section {
        padding: 60px 15px;
    }

    .reviews-heading h2 {
        font-size: 36px;
    }

    .reviews-heading p {
        font-size: 15px;
    }

    .review-card {
        width: 300px;
        padding: 20px;
    }

    .review-card h3 {
        font-size: 16px;
    }

    .review-card p {
        font-size: 13px;
    }

    .cta-section {
        padding: 80px 15px;
    }

    .cta-content h2 {
        font-size: 40px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta-btn {
        padding: 15px 30px;
        font-size: 15px;
        width: 100%;
        max-width: 300px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px 40px;
    }

    .footer-newsletter {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .trust-strip {
        font-size: 12px;
        gap: 15px;
    }

    .cart-drawer {
        width: 100%;
        right: -100%;
    }

    .checkout-card {
        padding: 20px;
    }

    .checkout-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-group-full {
        grid-column: span 1;
    }

    .success-card {
        padding: 30px 20px;
    }

    .success-card h1 {
        font-size: 24px;
    }

    .receipt-block {
        padding: 15px;
    }

    .policy-container {
        padding: 30px 20px;
    }

    .policy-container h1 {
        font-size: 28px;
    }

    .rp-content-area {
        grid-template-columns: 1fr;
        height: auto;
    }

    .rp-menu {
        display: flex;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 5px 0;
    }

    .rp-menu-item {
        padding: 10px 15px;
        white-space: nowrap;
        border-left: none !important;
        border-bottom: 3px solid transparent;
    }

    .rp-menu-item.active {
        border-bottom: 3px solid #2563eb;
    }
}

/* ==========================================================================
   FLOATING WHATSAPP & DEDICATED ABOUT PAGE STYLES
   ========================================================================== */

/* Floating WhatsApp Button styling */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
    display: block;
}

/* Dedicated About Us Page styling */
.about-hero {
    position: relative;
    height: 40vh;
    min-height: 280px;
    background: linear-gradient(135deg, #f7f6f2, #ecebe6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 8%;
    margin-top: 80px;
}

.about-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.about-hero-content h1 span {
    background: var(--luxury-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.about-story-section {
    padding: 80px 8%;
    background: var(--bg-white);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-img img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--box-shadow-medium);
}

.about-story-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-story-text h2 span {
    color: var(--primary-green);
}

.about-story-text p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-vision-mission {
    padding: 80px 8%;
    background: #fcfcf9;
}

.about-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vision-card,
.mission-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--box-shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.vision-card h3,
.mission-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.vision-card p,
.mission-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

.about-values-section {
    padding: 80px 8% 100px;
    background: var(--bg-white);
    text-align: center;
}

.about-values-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
}

.about-values-section h2 span {
    color: var(--primary-green);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-5px);
    background: var(--bg-white);
    box-shadow: var(--box-shadow-medium);
}

.value-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .about-hero {
        margin-top: 68px;
        height: 30vh;
    }

    .about-hero-content h1 {
        font-size: 36px;
    }

    .about-hero-content p {
        font-size: 15px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px 15px;
    }

    header.scrolled {
        padding: 8px 15px;
    }

    .logo img {
        height: 28px;
    }

    .cart-icon-container {
        width: 38px;
        height: 38px;
    }

    .cart-icon-container svg {
        width: 18px;
        height: 18px;
    }

    .menu-toggle {
        padding: 10px;
        margin: -10px;
    }

    nav {
        top: 48px;
        height: calc(100vh - 48px);
        padding-top: 30px;
        gap: 20px;
    }

    .hero-slider {
        margin-top: 48px;
    }
}