/* Modern Elegant CSS for Cosmetic eBook Site */

/* Import Elegant Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');


/* CSS Variables for Consistent Color Palette */
:root {
    --primary-color: #eb2a79;      /* Soft rose - main brand color */
    --primary-light: #F2E0E0;       /* Light rose tint */
    --secondary-color: #A7B89B;     /* Sage green - natural elegance */
    --accent-color: #E8B4B4;        /* Blush pink */
    --text-dark: #2C2A2A;           /* Soft black for headings */
    --text-medium: #5C5A5A;          /* Medium gray for body text */
    --text-light: #8E8E8E;           /* Light gray for meta text */
    --bg-light: #FFF9F9;             /* Warm white background */
    --white: #FFFFFF;
    --shadow-sm: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 20px 40px -15px rgba(212, 165, 165, 0.2);
    --border-radius: 24px;
}

body{
    font-family: "Lato", sans-serif;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    margin-top: 0;
    margin-bottom: .5rem;
     font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: #051311;
}



/* Hero Section Styles */
.hero-wrapper {
    background: linear-gradient(135deg, var(--bg-light) 0%, #FFFFFF 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements */
.hero-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212,165,165,0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-tagline {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-light) 0%, #FFF0F0 100%);
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 25px;
    border: 1px solid rgba(212, 165, 165, 0.2);
    backdrop-filter: blur(5px);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.title-highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-light) 0%, transparent 100%);
    border-radius: 4px;
    z-index: -1;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-cta {
    margin-top: 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color) 0%, #C49595 100%);
    padding: 18px 38px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 45px -15px var(--primary-color);
    background: linear-gradient(135deg, #C49595 0%, var(--primary-color) 100%);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(5px);
}

.hero-image {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #FFE4E1 100%);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

/* Optional: Add subtle pattern overlay */
.hero-image::after {
    content: 'Ã¢Å“Â¨';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    opacity: 0.1;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-wrapper {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .btn-primary {
        padding: 16px 32px;
        font-size: 15px;
    }
    
    .hero-image {
        height: 300px;
    }
}

/* Combined Design - Asymmetrical Images + Numbered Cards */

.beauty-essence {
    padding: 40px 0;
    background: #FFFFFF;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header Styles */
.essence-header {
    text-align: center;
    margin-bottom: 0;
    /* max-width: 739px; */
    margin-left: auto;
    margin-right: auto;
}

.header-subtitle {
    display: block;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #B8A5A5;
    margin-bottom: 20px;
    font-weight: 400;
}

.header-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 400;
    color: #2C2A2A;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.header-description {
    font-size: 18px;
    line-height: 1.7;
    color: #6F6A6A;
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto;
}

/* Main Layout */
.essence-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 59px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Asymmetrical Gallery (from Design 1) */
.gallery-asymmetrical {
    position: relative;
}

.gallery-stack {
    position: relative;
    min-height: 600px;
}

.stack-item {
    position: absolute;
}

.stack-item.primary {
    top: 0;
    left: 0;
    width: 80%;
    z-index: 2;
}

.stack-item.secondary {
    bottom: 0;
    right: 0;
    width: 70%;
    z-index: 3;
}

.stack-whitespace {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: #FAF4F4;
    border-radius: 50%;
    z-index: 1;
}

/* Image Frames */
.item-frame {
    position: relative;
    overflow: hidden;
}

.frame-soft {
    border-radius: 40px 40px 40px 0;
    box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.08);
}

.frame-elegant {
    border-radius: 0 40px 40px 40px;
    box-shadow: 0 30px 45px -20px rgba(180, 165, 165, 0.15);
}

.frame-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.item-frame:hover .frame-image {
    transform: scale(1.02);
}

/* Frame decorations */
.frame-decoration {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    border: 2px solid #F8E8E8;
    border-radius: 30px;
    z-index: -1;
}

.frame-glow {
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #FDF5F5 0%, transparent 80%);
    border-radius: 40px;
    z-index: -1;
}

/* Numbered Content (from Design 2) */
.content-numbered {
    padding: 20px 0;
}

.numbered-card {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.numbered-card:hover {
    transform: translateX(8px);
}

.card-marker {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 300;
    color: #D8C0C0;
    line-height: 1;
    min-width: 55px;
    transition: color 0.3s ease;
}

.numbered-card:hover .card-marker {
    color: #eb2a79;
}

.card-details {
    flex: 1;
}

.details-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    color: #2C2A2A;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.details-text {
    font-size: 16px;
    line-height: 1.8;
    color: #6F6A6A;
    font-weight: 300;
    margin: 0;
    max-width: 320px;
}

/* Rhythm spacing between cards */
.card-rhythm {
    height: 40px;
    width: 100%;
}

/* Separator */
.content-separator {
    width: 70px;
    height: 1px;
    background: linear-gradient(90deg, #E0C8C8 0%, transparent 100%);
    margin: 45px 0 35px;
}

/* Invitation */
.content-invite {
    margin-top: 10px;
}

.invite-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #F0E4E4;
    transition: all 0.3s ease;
}

.invite-label {
    font-size: 16px;
    color: #4A4545;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.invite-arrow {
    font-size: 20px;
    color: #eb2a79;
    transition: transform 0.3s ease;
}

.invite-link:hover {
    border-bottom-color: #eb2a79;
    gap: 18px;
}

.invite-link:hover .invite-arrow {
    transform: translateX(5px);
}

/* Footer */
.essence-footer {
    margin-top: 100px;
    display: flex;
    justify-content: center;
}

.footer-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 6px;
    height: 6px;
    background: #F0E0E0;
    border-radius: 50%;
    display: inline-block;
}

.dot.accent {
    width: 10px;
    height: 10px;
    background: #eb2a79;
    margin-top: -2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .essence-layout {
        gap: 50px;
    }
    
    .header-title {
        font-size: 40px;
    }
    
    .gallery-stack {
        min-height: 500px;
    }
    
    .card-marker {
        font-size: 28px;
        min-width: 50px;
    }
}

@media (max-width: 768px) {
    .beauty-essence {
        padding: 80px 0;
    }
    
    .essence-header {
        margin-bottom: 60px;
    }
    
    .header-title {
        font-size: 36px;
    }
    
    .essence-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .gallery-asymmetrical {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .gallery-stack {
        min-height: 450px;
    }
    
    .content-numbered {
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }
    
    .numbered-card {
        gap: 20px;
    }
    
    .details-text {
        max-width: 100%;
    }
    
    .card-rhythm {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .header-title {
        font-size: 32px;
    }
    
    .header-description {
        font-size: 16px;
    }
    
    .gallery-stack {
        min-height: 350px;
    }
    
    .stack-item.primary {
        width: 85%;
    }
    
    .stack-item.secondary {
        width: 75%;
    }
    
    .numbered-card {
        gap: 15px;
    }
    
    .card-marker {
        font-size: 24px;
        min-width: 40px;
    }
    
    .details-title {
        font-size: 20px;
    }
    
    .card-rhythm {
        height: 25px;
    }
    
    .content-separator {
        margin: 35px 0 25px;
    }
}

/* Subtle entrance animations */
@media (prefers-reduced-motion: no-preference) {
    .stack-item.primary {
        opacity: 0;
        animation: slideFromLeft 0.8s ease forwards;
    }
    
    .stack-item.secondary {
        opacity: 0;
        animation: slideFromRight 0.8s ease forwards;
        animation-delay: 0.2s;
    }
    
    .numbered-card {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeUp 0.6s ease forwards;
    }
    
    .numbered-card:nth-child(1) { animation-delay: 0.1s; }
    .numbered-card:nth-child(3) { animation-delay: 0.2s; }
    .numbered-card:nth-child(5) { animation-delay: 0.3s; }
}

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Benefits Section - Completely New Structure */

.virtue-showcase {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

/* Background Image - Full width separate element */
.virtue-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.backdrop-image {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: saturate(0.95) brightness(0.85);
    transform: scale(1.05);
    animation: slowDrift 20s ease-in-out infinite alternate;
}

.backdrop-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.85) 0%, rgba(45, 40, 40, 0.75) 100%);
    backdrop-filter: blur(2px);
}

/* Container */
.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Floating Content Panel - New concept */
.virtue-panel {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 60px;
    padding: 70px 60px;
    box-shadow: 0 40px 60px -30px rgba(0, 0, 0, 0.5);
    animation: panelFloat 6s ease-in-out infinite;
}

/* Panel Intro - New minimalist style */
.panel-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.intro-badge {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(220, 200, 200, 0.7);
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.intro-headline {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 25px;
    letter-spacing: -0.01em;
    line-height: 1.2;
    text-transform: lowercase;
}

.intro-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.separator-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 200, 200, 0.3), transparent);
}

.separator-diamond {
    color: rgba(220, 200, 200, 0.5);
    font-size: 14px;
}

.intro-phrase {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(240, 230, 230, 0.8);
    font-weight: 300;
    font-style: italic;
}

/* Masonry-style Grid - New layout */
.virtue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

/* Tile variations */
.virtue-tile {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.virtue-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0.6s ease;
}

.virtue-tile:hover::before {
    left: 100%;
}

.virtue-tile:hover {
    background: rgba(30, 30, 30, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
}

/* Tile sizes */
.tile-large {
    grid-column: span 1;
    grid-row: span 2;
    padding: 40px 30px;
}

.tile-square {
    grid-column: span 1;
    grid-row: span 1;
    padding: 35px 25px;
}

.tile-wide {
    grid-column: span 2;
    grid-row: span 1;
    padding: 30px 35px;
}

/* Tile content */
.tile-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tile-content.horizontal {
    flex-direction: row;
    align-items: center;
    gap: 25px;
}

/* Symbol styling */
.tile-symbol {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
}

.tile-content.horizontal .tile-symbol {
    margin-bottom: 0;
}

.symbol-image {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: brightness(0) invert(0.9);
    opacity: 0.9;
}

.symbol-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(220, 200, 200, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Tile typography */
.tile-heading {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    text-transform: lowercase;
}

.tile-large .tile-heading {
    font-size: 32px;
}

.tile-wide .tile-heading {
    font-size: 26px;
}

.tile-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(230, 220, 220, 0.8);
    font-weight: 300;
    margin-bottom: 20px;
}

.tile-large .tile-description {
    font-size: 16px;
}

.tile-footnote {
    margin-top: auto;
    font-size: 18px;
    color: rgba(200, 180, 180, 0.4);
    font-weight: 300;
}

/* Accent tile */
.tile-square.accent {
    background: rgba(60, 50, 50, 0.5);
    border-color: rgba(220, 200, 200, 0.15);
}

.tile-square.accent .tile-heading {
    color: #f0e0e0;
}

/* Floating quote - New element */
.virtue-whisper {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.whisper-text {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(200, 180, 180, 0.5);
    font-weight: 300;
}

/* Animations */
@keyframes slowDrift {
    0% { transform: scale(1.05) translate(0, 0); }
    100% { transform: scale(1.1) translate(-10px, -10px); }
}

@keyframes panelFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .virtue-panel {
        padding: 50px 40px;
    }
    
    .intro-headline {
        font-size: 38px;
    }
    
    .virtue-grid {
        gap: 15px;
    }
    
    .tile-heading {
        font-size: 24px;
    }
    
    .tile-large .tile-heading {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .container-fluid {
        padding: 40px 20px;
    }
    
    .virtue-panel {
        padding: 40px 25px;
        border-radius: 40px;
    }
    
    .intro-headline {
        font-size: 32px;
    }
    
    .intro-phrase {
        font-size: 16px;
    }
    
    .virtue-grid {
        grid-template-columns: 1fr;
    }
    
    .tile-large,
    .tile-square,
    .tile-wide {
        grid-column: span 1;
        grid-row: span 1;
        padding: 30px 25px;
    }
    
    .tile-content.horizontal {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .tile-symbol {
        margin: 0 auto 20px;
    }
    
    .tile-heading {
        text-align: center;
    }
    
    .tile-description {
        text-align: center;
    }
    
    .tile-footnote {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .virtue-panel {
        padding: 30px 20px;
        border-radius: 30px;
    }
    
    .intro-badge {
        font-size: 10px;
        letter-spacing: 3px;
    }
    
    .intro-headline {
        font-size: 28px;
    }
    
    .separator-line {
        width: 40px;
    }
    
    .tile-large,
    .tile-square,
    .tile-wide {
        padding: 25px 20px;
    }
    
    .tile-heading {
        font-size: 22px;
    }
    
    .tile-large .tile-heading {
        font-size: 24px;
    }
    
    .whisper-text {
        font-size: 12px;
    }
}

/* Optional: Smooth entrance */
@media (prefers-reduced-motion: no-preference) {
    .virtue-tile {
        opacity: 0;
        transform: translateY(30px);
        animation: tileRise 0.6s ease forwards;
    }
    
    .tile-large { animation-delay: 0.1s; }
    .tile-square:nth-child(2) { animation-delay: 0.2s; }
    .tile-wide { animation-delay: 0.3s; }
    .tile-square.accent { animation-delay: 0.4s; }
}

@keyframes tileRise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Beautiful Cards Benefits Section */

.benefits-gallery {
    padding: 40px 0;
    background: linear-gradient(135deg, #FDF9F9 0%, #FFFFFF 100%);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Soft decorative background */
.benefits-gallery::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(220, 200, 200, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.benefits-gallery::after {
    content: 'Ã¢Å“Â¦';
    position: absolute;
    bottom: 5%;
    left: 5%;
    font-size: 200px;
    color: rgba(220, 200, 200, 0.05);
    transform: rotate(10deg);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Header */
.gallery-header {
    text-align: center;
    margin-bottom: 70px;
}

.header-tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #B8A5A5;
    background: rgba(220, 200, 200, 0.1);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.header-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: #2C2A2A;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.header-note {
    font-size: 18px;
    color: #6F6A6A;
    font-weight: 300;
    font-style: italic;
}

/* Cards Grid - Beautiful layout */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

/* Individual Card */
.beauty-card {
    background: #FFFFFF;
    border-radius: 35px;
    padding: 35px 25px 40px;
    box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(220, 200, 200, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.beauty-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 35px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(220, 200, 200, 0.3), rgba(255, 255, 255, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.beauty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px -15px rgba(180, 160, 160, 0.2);
    border-color: rgba(200, 180, 180, 0.3);
}

.beauty-card:hover::before {
    opacity: 1;
}

/* Featured card (center piece) */
.beauty-card.featured {
    background: linear-gradient(
135deg, #FFFFFF, #fff);
    transform: scale(1.02);
    box-shadow: 0 20px 40px -15px rgba(200, 170, 170, 0.15);
}

.beauty-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

/* Card Media */
.card-media {
    position: relative;
    /* width: 100px; */
    /* height: 100px; */
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFDEE5;
    
}

.card-icon {
    width: 60px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: brightness(0.7);
    transition: all 0.3s ease;
}

.beauty-card:hover .card-icon {
    filter: brightness(0.5);
    transform: scale(1.1);
}

.media-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(220, 200, 200, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    transition: all 0.4s ease;
}

.beauty-card:hover .media-backdrop {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(200, 170, 170, 0.15) 0%, transparent 70%);
}

/* Card Content */
.card-content {
    position: relative;
    z-index: 2;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    color: #2C2A2A;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D8C0C0, transparent);
}

.card-text {
    font-size: 15px;
    line-height: 1.7;
    color: #6F6A6A;
    font-weight: 300;
    margin: 15px 0 20px;
    padding: 0 5px;
}

.card-ornament {
    font-size: 24px;
    color: #D8C8C8;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.beauty-card:hover .card-ornament {
    opacity: 0.8;
}

/* Footer */
.gallery-footer {
    text-align: center;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 40px;
    background: #FFFFFF;
    box-shadow: 0 5px 20px -8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 200, 200, 0.2);
}

.link-text {
    font-size: 15px;
    color: #4A4545;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.link-dot {
    font-size: 8px;
    color: #eb2a79;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    gap: 20px;
    box-shadow: 0 10px 25px -10px rgba(200, 170, 170, 0.2);
    border-color: rgba(200, 170, 170, 0.3);
}

.footer-link:hover .link-dot {
    transform: scale(1.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .header-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .benefits-gallery {
        padding: 80px 0;
    }
    
    .header-title {
        font-size: 34px;
    }
    
    .header-note {
        font-size: 16px;
    }
    
    .cards-grid {
        gap: 20px;
    }
    
    .beauty-card {
        padding: 30px 20px 35px;
    }
    
    .card-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .cards-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .header-title {
        font-size: 30px;
    }
    
    .beauty-card.featured {
        transform: scale(1);
    }
    
    .beauty-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Card entrance animation */
@media (prefers-reduced-motion: no-preference) {
    .beauty-card {
        opacity: 0;
        animation: cardAppear 0.6s ease forwards;
    }
    
    .beauty-card:nth-child(1) { animation-delay: 0.1s; }
    .beauty-card:nth-child(2) { animation-delay: 0.2s; }
    .beauty-card:nth-child(3) { animation-delay: 0.3s; }
    .beauty-card:nth-child(4) { animation-delay: 0.4s; }
}

@keyframes cardAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Blog Section - Modern Elegant Cards */

.journal-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FDF8F8 100%);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Soft background texture */
.journal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 200, 200, 0.2), transparent);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Journal Header */
.journal-header {
    text-align: center;
    margin-bottom: 60px;
}

.header-mini {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #B8A5A5;
    background: rgba(220, 200, 200, 0.08);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-weight: 400;
}

.header-main {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: #2C2A2A;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.header-desc {
    font-size: 18px;
    color: #6F6A6A;
    font-weight: 300;
    font-style: italic;
}

/* Blog Grid */
.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Journal Card */
.journal-card {
    background: #FFFFFF;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(220, 200, 200, 0.15);
}

.journal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px -15px rgba(180, 160, 160, 0.2);
    border-color: rgba(200, 170, 170, 0.3);
}

/* Card Ornament */
.card-ornament {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(220, 200, 200, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.journal-card:hover .card-ornament {
    opacity: 1;
}

/* Image Wrapper */
.card-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.journal-card:hover .card-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.02) 100%);
    pointer-events: none;
}

/* Card Content */
.card-content {
    padding: 30px 25px 35px;
    position: relative;
    z-index: 2;
    background: #FFFFFF;
}

/* Meta Information */
.card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #9A8A8A;
    letter-spacing: 0.3px;
}

.meta-date, .meta-author {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-icon {
    font-size: 14px;
    opacity: 0.7;
}

/* Card Title */
.card-title {
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 400;
}

.title-link {
    color: #2C2A2A;
    text-decoration: none;
    transition: color 0.3s ease;
    background: linear-gradient(90deg, currentColor, currentColor);
    background-size: 0% 1px;
    background-repeat: no-repeat;
    background-position: left bottom;
}

.title-link:hover {
    color: #B8A5A5;
    background-size: 100% 1px;
}

/* Card Excerpt */
.card-excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: #6F6A6A;
    margin-bottom: 25px;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Link */
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #8A7A7A;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
}

.link-text {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.link-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.card-link:hover {
    color: #B8A5A5;
    gap: 12px;
    border-bottom-color: rgba(200, 170, 170, 0.3);
}

.card-link:hover .link-arrow {
    transform: translateX(5px);
}

/* Journal Footer */
.journal-footer {
    text-align: center;
    margin-top: 40px;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 40px;
    background: #FFFFFF;
    box-shadow: 0 5px 20px -8px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 200, 200, 0.2);
}

.footer-text {
    font-size: 15px;
    color: #4A4545;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 400;
}

.footer-dots {
    font-size: 20px;
    color: #eb2a79;
    letter-spacing: 2px;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    gap: 20px;
    box-shadow: 0 10px 25px -10px rgba(200, 170, 170, 0.15);
    border-color: rgba(200, 170, 170, 0.3);
    background: linear-gradient(135deg, #FFFFFF, #FDF5F5);
}

.footer-link:hover .footer-dots {
    transform: scale(1.2);
    letter-spacing: 4px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .journal-grid {
        gap: 20px;
    }
    
    .header-main {
        font-size: 38px;
    }
    
    .card-image-wrapper {
        height: 220px;
    }
    
    .card-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .journal-section {
        padding: 80px 0;
    }
    
    .journal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .header-main {
        font-size: 34px;
    }
    
    .header-desc {
        font-size: 16px;
    }
    
    .card-content {
        padding: 25px 20px 30px;
    }
}

@media (max-width: 640px) {
    .journal-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .card-meta {
        gap: 15px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .header-main {
        font-size: 30px;
    }
    
    .header-mini {
        font-size: 11px;
        padding: 6px 16px;
    }
    
    .card-image-wrapper {
        height: 200px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-excerpt {
        font-size: 14px;
        -webkit-line-clamp: 3;
    }
    
    .footer-link {
        padding: 12px 30px;
    }
}

/* Card entrance animation */
@media (prefers-reduced-motion: no-preference) {
    .journal-card {
        opacity: 0;
        transform: translateY(30px);
        animation: cardRise 0.6s ease forwards;
    }
    
    @keyframes cardRise {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}


/* Products Section - Modern Elegant Cards */

.collection-showcase {
    padding: 40px 0;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Decorative background */
.collection-showcase::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(220, 200, 200, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.collection-showcase::after {
    content: 'Ã¢Å“Â¦';
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 150px;
    color: rgba(200, 180, 180, 0.03);
    transform: rotate(15deg);
    pointer-events: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Header Styles */
.collection-header {
    text-align: center;
    margin-bottom: 60px;
}

.header-mini {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #B8A5A5;
    background: rgba(220, 200, 200, 0.08);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-weight: 400;
}

.header-main {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: #2C2A2A;
    margin-bottom: 15px;
    /* letter-spacing: -0.01em; */
    text-transform: capitalize;
}

.header-desc {
    font-size: 18px;
    color: #6F6A6A;
    font-weight: 300;
    font-style: italic;
}

/* Products Grid */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Product Card */
.product-card {
    height: 100%;
    transition: transform 0.3s ease;
}

.card-inner {
    background: #FFFFFF;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(220, 200, 200, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover .card-inner {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px -15px rgba(180, 160, 160, 0.2);
    border-color: rgba(200, 170, 170, 0.3);
}

/* Card Media (Image Section) */
.card-media {
    position: relative;
    padding: 30px 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: linear-gradient(135deg, #FDF8F8 0%, #FFFFFF 100%); */
    overflow: hidden;
    padding-bottom: 25px;
}

.media-image {
    max-width: 80%;
    height: auto;
    transition: transform 0.6s ease;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.03));
}

.product-card:hover .media-image {
    transform: scale(1.05) translateY(-5px);
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.media-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(220, 200, 200, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .media-glow {
    opacity: 1;
}

/* Floating Action Buttons */
.media-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.product-card:hover .media-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5C4A4A;
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(220, 200, 200, 0.2);
}

.action-btn:hover {
    background: #FDF5F5;
    color: #B8A5A5;
    transform: scale(1.1);
    border-color: rgba(200, 170, 170, 0.4);
}

.action-btn.active {
    background: #FDF0F0;
    color: #eb2a79;
    border-color: #eb2a79;
}

.action-btn svg {
    transition: all 0.3s ease;
}

.action-btn:hover svg {
    transform: scale(1.1);
}

/* Card Info */
.card-info {
    padding: 20px 25px 30px;
    text-align: center;
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.info-title {
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
}

.title-link {
    color: #2C2A2A;
    text-decoration: none;
    transition: color 0.3s ease;
    background: linear-gradient(90deg, #B8A5A5, #B8A5A5);
    background-size: 0% 1px;
    background-repeat: no-repeat;
    background-position: center bottom;
    padding-bottom: 2px;
}

.title-link:hover {
    color: #B8A5A5;
    background-size: 100% 1px;
}

.info-price {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #4A3A3A;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.price-symbol {
    font-size: 16px;
    color: #B8A5A5;
    margin-right: 2px;
}

.price-value {
    font-weight: 400;
    letter-spacing: -0.01em;
}

.info-divider {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #E0C8C8, transparent);
    margin: 15px auto;
}

.info-note {
    font-size: 13px;
    color: #B8A5A5;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 300;
    margin: 0;
}

/* Collection Footer */
.collection-footer {
    text-align: center;
    margin-top: 20px;
}

.footer-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 42px;
    background: #FFFFFF;
    border: 1px solid rgba(220, 200, 200, 0.3);
    border-radius: 50px;
    text-decoration: none;
    color: #4A4545;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-arrow {
    position: relative;
    z-index: 2;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(220, 200, 200, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.5s ease;
    z-index: 0;
}

.footer-button:hover {
    gap: 20px;
    border-color: rgba(200, 170, 170, 0.5);
    color: #2C2A2A;
    box-shadow: 0 10px 25px -10px rgba(200, 170, 170, 0.2);
}

.footer-button:hover .button-arrow {
    transform: translateX(5px);
}

.footer-button:hover .button-glow {
    width: 300px;
    height: 300px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .collection-grid {
        gap: 20px;
    }
    
    .header-main {
        font-size: 38px;
    }
    
    .card-media {
        padding: 25px 25px 0;
    }
    
    .info-price {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .collection-showcase {
        padding: 80px 0;
    }
    
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .header-main {
        font-size: 34px;
    }
    
    .header-desc {
        font-size: 16px;
    }
    
    .media-actions {
        opacity: 1;
        transform: translateX(0);
        top: 15px;
        right: 15px;
    }
    
    .action-btn {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 640px) {
    .collection-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .card-media {
        padding: 30px 30px 0;
    }
}

@media (max-width: 480px) {
    .header-main {
        font-size: 30px;
    }
    
    .header-mini {
        font-size: 11px;
        padding: 6px 16px;
    }
    
    .info-title {
        font-size: 18px;
    }
    
    .info-price {
        font-size: 20px;
    }
    
    .footer-button {
        padding: 14px 35px;
        font-size: 14px;
    }
}

/* Card entrance animation */
@media (prefers-reduced-motion: no-preference) {
    .grid-item {
        opacity: 0;
        transform: translateY(30px);
        animation: cardFadeUp 0.6s ease forwards;
    }
    
    .grid-item:nth-child(1) { animation-delay: 0.1s; }
    .grid-item:nth-child(2) { animation-delay: 0.2s; }
    .grid-item:nth-child(3) { animation-delay: 0.3s; }
    
    @keyframes cardFadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Wishlist active state */
.wishlist-btn.active svg {
    fill: #fff;
    stroke: #eb2a79;
}


/* Updated CSS - with BIGGER payment card icons */

.modern-footer {
    /* background: #0F0E0E;
    background: linear-gradient(145deg, #0F0E0E 0%, #1A1515 100%); */
    font-family: 'Inter', sans-serif;
    position: relative;
    padding: 60px 0 0;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/footer-bg1.jpg);
}

/* Modern Glow Effect */
.footer-glow {
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 215, 0.2), rgba(255, 200, 200, 0.4), rgba(255, 215, 215, 0.2), transparent);
    filter: blur(2px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Footer Columns */
.footer-col {
    position: relative;
}

/* Brand Column */
.brand-col {
    padding-right: 20px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 216px;
    height: auto;
    /* filter: brightness(0) invert(1); */
    /* opacity: 0.95; */
    transition: all 0.3s ease;
}

.footer-logo:hover img {
    opacity: 1;
    transform: translateY(-2px);
}

.brand-text {
    font-size: 14px;
    line-height: 1.7;
    color: #B0A8A8;
    margin-bottom: 25px;
    font-weight: 300;
    max-width: 320px;
}

/* ===== PAYMENT CARDS - BIGGER AND BOLDER ===== */
.payment-cards {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.payment-card {
    width: 80px;        /* Increased from 50px */
    height: 52px;       /* Increased from 32px */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px; /* Larger border radius */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 15px -8px rgba(0, 0, 0, 0.3);
}

.payment-card i {
    font-size: 42px;     /* Increased from 24px */
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

/* Brand-specific colors on hover */
.payment-card.visa:hover i {
    color: #1A1F71;      /* Visa blue */
    text-shadow: none;
}

.payment-card.mastercard:hover i {
    color: #EB001B;      /* Mastercard red */
    text-shadow: none;
}

.payment-card.discover:hover i {
    color: #FF6000;      /* Discover orange */
    text-shadow: none;
}

.payment-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 15px 25px -10px rgba(255, 255, 255, 0.2);
}

.payment-card:hover i {
    transform: scale(1.1);
}

/* Footer Title */
.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #eb2a79, transparent);
    border-radius: 2px;
}

/* Contact Column */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.item-icon {
    width: 36px;
    height: 36px;
    /* background: rgba(255, 255, 255, 0.03); */
    /* border: 1px solid rgba(255, 255, 255, 0.05); */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFC8C8;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-item:hover .item-icon {
    /* background: rgba(255, 200, 200, 0.1); */
    border-color: rgba(255, 200, 200, 0.3);
    transform: scale(1.05);
    color: #ffffff;
}

.item-text {
    flex: 1;
}

.text-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #807878;
    margin-bottom: 2px;
    font-weight: 400;
}

.item-text p {
    font-size: 14px;
    line-height: 1.5;
    color: #E0D8D8;
    margin: 0;
    font-weight: 300;
}

.item-text a {
    color: #E0D8D8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
}

.item-text a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FFC8C8;
    transition: width 0.3s ease;
}

.item-text a:hover {
    color: #ffffff;
}

.item-text a:hover::after {
    width: 100%;
}

/* Social Mini */
.social-mini {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B0A8A8;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #FFC8C8;
    border-color: #FFC8C8;
    color: #0F0E0E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -10px #FFC8C8;
}

/* Links Grid */
.links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.link-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #B0A8A8;
    font-size: 14px;
    font-weight: 300;
    transition: all 0.3s ease;
    padding: 6px 0;
}

.link-item i {
    font-size: 10px;
    color: #eb2a79;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.link-item:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.link-item:hover i {
    opacity: 1;
    transform: translateX(2px);
}

/* Newsletter Badge */
.newsletter-badge {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.newsletter-badge i {
    font-size: 24px;
    color: #eb2a79;
    opacity: 0.8;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text span {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.badge-text small {
    font-size: 11px;
    color: #908888;
    font-weight: 300;
}

.newsletter-badge:hover {
    background: rgba(255, 200, 200, 0.05);
    border-color: rgba(255, 200, 200, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -15px #FFC8C8;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    margin-top: 10px;
}

.bottom-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.copyright {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #807878;
    font-size: 13px;
    font-weight: 300;
}

.copyright i {
    font-size: 12px;
    color: #FFC8C8;
}

.divider-dot {
    width: 3px;
    height: 3px;
    background: #FFC8C8;
    border-radius: 50%;
    opacity: 0.3;
}

.rights-text {
    color: #605858;
    font-size: 13px;
    font-weight: 300;
}

/* Back to Top Button */
.back-top {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    text-decoration: none;
    color: #B0A8A8;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.back-top i {
    font-size: 16px;
    color: #FFC8C8;
    transition: all 0.3s ease;
}

.back-top:hover {
    background: #FFC8C8;
    border-color: #FFC8C8;
    color: #0F0E0E;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -10px #FFC8C8;
}

.back-top:hover i {
    color: #0F0E0E;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        gap: 25px;
    }
    
    .brand-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .brand-col {
        padding-right: 0;
        text-align: center;
    }
    
    .brand-text {
        margin-left: auto;
        margin-right: auto;
    }
    
    .payment-cards {
        justify-content: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-title {
        display: block;
        text-align: center;
    }
    
    .links-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .social-mini {
        justify-content: center;
    }
    
    .newsletter-badge {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .bottom-left {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .payment-card {
        width: 70px;
        height: 48px;
    }
    
    .payment-card i {
        font-size: 36px;
    }
    
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .payment-card {
        width: 65px;
        height: 45px;
    }
    
    .payment-card i {
        font-size: 32px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .item-text {
        text-align: center;
    }
    
    .bottom-left {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Animation */
@media (prefers-reduced-motion: no-preference) {
    .footer-col {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeUp 0.5s ease forwards;
    }
    
    .footer-col:nth-child(1) { animation-delay: 0.1s; }
    .footer-col:nth-child(2) { animation-delay: 0.2s; }
    .footer-col:nth-child(3) { animation-delay: 0.3s; }
    
    @keyframes fadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}


/* Elegant White Header CSS */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Inter:wght@300;400;500&display=swap');

.elegant-header {
    font-family: 'Inter', sans-serif;
    background: #FFFFFF;
    position: relative;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Bar */
.header-top {
    background: #FCF9F9;
    border-bottom: 1px solid #F0E8E8;
    padding: 8px 0;
}

.top-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.welcome-message {
    font-size: 13px;
    color: #B29A9A;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-link {
    color: #7A6A6A;
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.top-link i {
    font-size: 12px;
    color: #D4B5B5;
}

.top-link:hover {
    color: #eb2a79;
}

.separator {
    color: #E0D0D0;
    font-size: 14px;
}

/* Main Header */
.main-header {
    padding: 5px 0;
    background: #FFFFFF;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(212, 165, 165, 0.05);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo-wrapper {
    flex-shrink: 0;
}

.logo {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.logo img {
    max-width: 239px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.02);
}

/* Navigation */
.navigation-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #4A4545;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 8px 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link i {
    font-size: 10px;
    color: #D4B5B5;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #eb2a79;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #FFFFFF;
    border: 1px solid #F0E8E8;
    border-radius: 12px;
    padding: 12px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px -15px rgba(212, 165, 165, 0.1);
    list-style: none;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 24px;
    color: #6A5A5A;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-item:hover {
    background: #FCF9F9;
    color: #eb2a79;
    padding-left: 30px;
}

/* Actions */
.actions-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.action-btn {
    width: 45px;
    height: 45px;
    background: #FCF9F9;
    border: 1px solid #F0E8E8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5A4A4A;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.action-btn:hover {
    background: #FFFFFF;
    border-color: #eb2a79;
    color: #eb2a79;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(212, 165, 165, 0.2);
}

.action-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #eb2a79;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 500;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid #FFFFFF;
}

/* Cart Dropdown */
.cart-dropdown-wrapper {
    position: relative;
}

.cart-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 360px;
    background: #FFFFFF;
    border: 1px solid #F0E8E8;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 30px 60px -20px rgba(212, 165, 165, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(10px);
    z-index: 1001;
}

.cart-dropdown-wrapper:hover .cart-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #F0E8E8;
}

.cart-header h5 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #3A3535;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-count {
    font-size: 12px;
    color: #eb2a79;
    background: #FCF9F9;
    padding: 3px 10px;
    border-radius: 20px;
}

/* Cart Empty */
.cart-empty {
    text-align: center;
    padding: 30px 0;
}

.cart-empty i {
    font-size: 50px;
    color: #E0D0D0;
    margin-bottom: 15px;
}

.cart-empty p {
    color: #9A8A8A;
    font-size: 14px;
    margin-bottom: 15px;
}

.continue-link {
    color: #eb2a79;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.continue-link:hover {
    color: #B88A8A;
}

/* Cart Items */
.cart-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

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

.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #F0E8E8;
    position: relative;
}

.item-image {
    width: 60px;
    height: 60px;
    background: #FCF9F9;
    border-radius: 10px;
    object-fit: cover;
}

.item-info {
    flex: 1;
}

.item-info h6 {
    font-size: 13px;
    font-weight: 400;
    color: #3A3535;
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.item-price {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.item-price span:first-child {
    color: #9A8A8A;
}

.item-price span:last-child {
    color: #eb2a79;
    font-weight: 500;
}

.item-remove {
    position: absolute;
    top: 12px;
    right: 0;
    background: none;
    border: none;
    color: #C0B0B0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.item-remove:hover {
    color: #eb2a79;
}

/* Cart Total */
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #F0E8E8;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #3A3535;
}

.cart-total span:last-child {
    color: #eb2a79;
    font-weight: 500;
}

/* Cart Buttons */
.cart-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-view, .btn-checkout {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-view {
    background: #FCF9F9;
    border: 1px solid #F0E8E8;
    color: #5A4A4A;
}

.btn-view:hover {
    background: #FFFFFF;
    border-color: #eb2a79;
}

.btn-checkout {
    background: #eb2a79;
    border: 1px solid #eb2a79;
    color: #FFFFFF;
}

.btn-checkout:hover {
    background: #C49595;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px #eb2a79;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: #eb2a79;
    transition: all 0.3s ease;
}

/* Search Bar (optional popup) */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-overlay.active {
    display: flex;
}

.search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FCF9F9;
    border: 1px solid #F0E8E8;
    color: #5A4A4A;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-close:hover {
    background: #eb2a79;
    color: #FFFFFF;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .top-right .top-link span {
        display: none;
    }
    
    .navigation-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #FFFFFF;
        padding: 80px 20px 30px;
        transition: left 0.3s ease;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }
    
    .navigation-wrapper.show {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #FCF9F9;
        margin-top: 10px;
    }
    
    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    
    .logo img {
        max-width: 150px;
    }
    
    .action-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .cart-dropdown-menu {
        width: 320px;
        right: -70px;
    }
}

@media (max-width: 480px) {
    .actions-wrapper {
        gap: 8px;
    }
    
    .cart-dropdown-menu {
        width: 300px;
        right: -90px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.elegant-header {
    animation: fadeIn 0.5s ease;
}


/* Beautiful Compact Cart Popup CSS */

.cart-dropdown-wrapper {
    position: relative;
}

/* Cart Button */
.cart-btn {
    width: 45px;
    height: 45px;
    background: #FCF9F9;
    border: 1px solid #F0E8E8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5A4A4A;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.cart-btn:hover {
    background: #FFFFFF;
    border-color: #eb2a79;
    color: #eb2a79;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(212, 165, 165, 0.2);
}

.action-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #eb2a79;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 500;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid #FFFFFF;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.3px;
}

/* Cart Popup */
.cart-popup {
    position: absolute;
    top: calc(100% + 15px);
    right: -10px;
    width: 340px;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(212, 165, 165, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(10px) scale(0.98);
    z-index: 1001;
    font-family: 'Inter', sans-serif;
}

.cart-dropdown-wrapper:hover .cart-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Popup Header */
.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #F5F0F0;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-left i {
    font-size: 18px;
    color: #eb2a79;
    background: #FCF9F9;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 500;
    color: #2C2A2A;
    letter-spacing: 0.3px;
}

.item-count {
    font-size: 12px;
    color: #eb2a79;
    background: #FCF9F9;
    padding: 4px 10px;
    border-radius: 30px;
    font-weight: 400;
}

/* Empty State */
.popup-empty {
    text-align: center;
    padding: 30px 15px;
}

.empty-icon {
    width: 70px;
    height: 70px;
    background: #FCF9F9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.empty-icon i {
    font-size: 30px;
    color: #D4C0C0;
}

.empty-text {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #2C2A2A;
    margin-bottom: 5px;
}

.empty-subtext {
    font-size: 13px;
    color: #9A8A8A;
    margin-bottom: 20px;
    font-weight: 300;
}

.empty-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #eb2a79;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 20px;
    background: #FCF9F9;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.empty-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.empty-link:hover {
    background: #eb2a79;
    color: #FFFFFF;
    gap: 12px;
}

.empty-link:hover i {
    transform: translateX(3px);
}

/* Cart Items */
.popup-items {
    max-height: 280px;
    overflow-y: auto;
    margin-bottom: 15px;
    scrollbar-width: thin;
    scrollbar-color: #eb2a79 #F5F0F0;
}

.popup-items::-webkit-scrollbar {
    width: 4px;
}

.popup-items::-webkit-scrollbar-track {
    background: #F5F0F0;
    border-radius: 4px;
}

.popup-items::-webkit-scrollbar-thumb {
    background: #eb2a79;
    border-radius: 4px;
}

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

.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #F5F0F0;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.item-image {
    width: 60px;
    height: 60px;
    background: #FCF9F9;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details {
    flex: 1;
    padding-right: 25px;
}

.item-title {
    font-size: 14px;
    font-weight: 400;
    color: #2C2A2A;
    margin: 0 0 6px 0;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.item-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.item-quantity {
    color: #9A8A8A;
    font-weight: 300;
}

.item-price {
    color: #eb2a79;
    font-weight: 500;
}

.item-remove {
    position: absolute;
    top: 12px;
    right: 0;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    color: #C0B0B0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.item-remove:hover {
    background: #FCF9F9;
    color: #eb2a79;
    transform: scale(1.1);
}

.item-remove i {
    font-size: 14px;
}

/* Popup Summary */
.popup-summary {
    background: #FCF9F9;
    border-radius: 16px;
    padding: 15px;
    margin: 15px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 13px;
}

.summary-row.shipping {
    padding-bottom: 8px;
    border-bottom: 1px solid #F0E8E8;
}

.summary-row.total {
    font-size: 15px;
    font-weight: 500;
    color: #2C2A2A;
    margin-top: 5px;
    margin-bottom: 0;
}

.summary-label {
    color: #7A6A6A;
    font-weight: 300;
}

.summary-value {
    color: #4A3A3A;
    font-weight: 400;
}

.summary-value.free {
    color: #eb2a79;
    display: flex;
    align-items: center;
    gap: 4px;
}

.summary-value.free i {
    font-size: 12px;
}

/* Popup Actions */
.popup-actions {
    display: flex;
    gap: 10px;
}

.view-cart, .checkout {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}
/* Updated Button Colors - Consistent & Beautiful */

/* Cart Button */
.cart-btn {
    width: 45px;
    height: 45px;
    background: #FCF9F9;
    border: 1px solid #F0E8E8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5A4A4A;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.cart-btn:hover {
    background: #eb2a79;        /* Changed to main pink */
    border-color: #eb2a79;
    color: #FFFFFF;              /* White icon on hover */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px #eb2a79;
}

.action-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #eb2a79;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 500;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid #FFFFFF;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.3px;
}

.cart-btn:hover .action-badge {
    background: #FFFFFF;          /* Badge turns white */
    color: #eb2a79;              /* Text turns pink */
    border-color: #eb2a79;
}

/* Empty State Link */
.empty-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #eb2a79;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 20px;
    background: #FCF9F9;
    border-radius: 40px;
    transition: all 0.3s ease;
    border: 1px solid #F0E8E8;
}

.empty-link i {
    font-size: 12px;
    color: #eb2a79;
    transition: transform 0.3s ease;
}

.empty-link:hover {
    background: #eb2a79;          /* Pink background */
    color: #FFFFFF;                /* White text */
    border-color: #eb2a79;
    gap: 12px;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px #eb2a79;
}

.empty-link:hover i {
    color: #FFFFFF;                /* White icon */
    transform: translateX(3px);
}

/* Remove Button */
.item-remove {
    position: absolute;
    top: 12px;
    right: 0;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    color: #C0B0B0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.item-remove:hover {
    background: #eb2a79;           /* Pink background */
    color: #FFFFFF;                 /* White icon */
    transform: scale(1.1);
    box-shadow: 0 5px 10px -5px #eb2a79;
}

/* View Cart Button */
.view-cart {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    background: #FCF9F9;
    border: 1px solid #F0E8E8;
    color: #5A4A4A;
}

.view-cart i {
    font-size: 14px;
    color: #eb2a79;
    transition: all 0.3s ease;
}

.view-cart:hover {
    background: #eb2a79;           /* Pink background */
    border-color: #eb2a79;
    color: #FFFFFF;                 /* White text */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px #eb2a79;
}

.view-cart:hover i {
    color: #FFFFFF;                 /* White icon */
}

/* Checkout Button */
.checkout {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    background: #eb2a79;           /* Pink background */
    border: 1px solid #eb2a79;
    color: #FFFFFF;                 /* White text */
}

.checkout i {
    font-size: 14px;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.checkout:hover {
    background: #C49595;           /* Darker pink on hover */
    border-color: #C49595;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px #C49595;
    color: #fff;
}

.checkout:hover i {
    color: #FFFFFF;
    transform: translateX(2px);     /* Slight move on hover */
}

/* Popup Note */
.popup-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
    padding: 10px;
    background: #FCF9F9;
    border-radius: 40px;
    font-size: 12px;
    color: #9A8A8A;
    transition: all 0.3s ease;
    border: 1px solid #F0E8E8;
}

.popup-note i {
    font-size: 12px;
    color: #eb2a79;
    transition: all 0.3s ease;
}

.popup-note:hover {
    background: #eb2a79;           /* Pink on hover */
    color: #FFFFFF;
    border-color: #eb2a79;
}

.popup-note:hover i {
    color: #FFFFFF;                 /* White icon */
}

/* Decorative Dots */
.popup-decoration {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
}

.decoration-dot {
    width: 4px;
    height: 4px;
    background: #F0E0E0;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-dropdown-wrapper:hover .decoration-dot {
    background: #eb2a79;           /* Pink dots on hover */
}

.cart-dropdown-wrapper:hover .decoration-dot:nth-child(1) {
    animation: dotPulse 1s ease infinite;
    animation-delay: 0s;
}

.cart-dropdown-wrapper:hover .decoration-dot:nth-child(2) {
    animation: dotPulse 1s ease infinite;
    animation-delay: 0.2s;
}

.cart-dropdown-wrapper:hover .decoration-dot:nth-child(3) {
    animation: dotPulse 1s ease infinite;
    animation-delay: 0.4s;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        background: #eb2a79;       /* Pink pulse */
    }
    50% {
        transform: scale(1.5);
        background: #C49595;       /* Darker pink at peak */
    }
}

/* Active/Focus States */
.cart-btn:focus-visible,
.empty-link:focus-visible,
.view-cart:focus-visible,
.checkout:focus-visible,
.item-remove:focus-visible {
    outline: 2px solid #eb2a79;
    outline-offset: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cart-btn:hover {
        transform: none;           /* Remove lift on mobile */
    }
    
    .view-cart:hover,
    .checkout:hover,
    .empty-link:hover {
        transform: none;
    }
}
/* Decorative Elements */
.popup-decoration {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
}

.decoration-dot {
    width: 4px;
    height: 4px;
    background: #F0E0E0;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-dropdown-wrapper:hover .decoration-dot:nth-child(1) {
    animation: dotPulse 1s ease infinite;
    animation-delay: 0s;
}

.cart-dropdown-wrapper:hover .decoration-dot:nth-child(2) {
    animation: dotPulse 1s ease infinite;
    animation-delay: 0.2s;
}

.cart-dropdown-wrapper:hover .decoration-dot:nth-child(3) {
    animation: dotPulse 1s ease infinite;
    animation-delay: 0.4s;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        background: #F0E0E0;
    }
    50% {
        transform: scale(1.5);
        background: #eb2a79;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .cart-popup {
        width: 320px;
        right: -20px;
    }
}

@media (max-width: 480px) {
    .cart-popup {
        width: 300px;
        right: -40px;
        padding: 18px;
    }
    
    .item-image {
        width: 50px;
        height: 50px;
    }
    
    .item-title {
        font-size: 13px;
    }
}

/* Updated Dropdown CSS - Bootstrap Compatible */

.navigation-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #4A4545;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 8px 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
}

.nav-link i {
    font-size: 10px;
    color: #D4B5B5;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #eb2a79;
}

.nav-link:hover i {
    color: #eb2a79;
}

/* Bootstrap Dropdown Styles */
.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle.show i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #FFFFFF;
    border: 1px solid #F0E8E8;
    border-radius: 16px;
    padding: 12px 0;
    min-width: 200px;
    box-shadow: 0 20px 40px -15px rgba(212, 165, 165, 0.15);
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: block; /* Override Bootstrap default */
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 10px 24px;
    color: #6A5A5A;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    background: transparent;
    border: none;
    clear: both;
    font-weight: 400;
    line-height: 1.5;
    text-align: inherit;
}

.dropdown-item:hover {
    background: #FCF9F9;
    color: #eb2a79;
    padding-left: 30px;
}

.dropdown-item:focus {
    background: #FCF9F9;
    color: #eb2a79;
    outline: none;
}

/* Dropdown divider (if needed) */
.dropdown-divider {
    height: 0;
    margin: 8px 0;
    overflow: hidden;
    border-top: 1px solid #F0E8E8;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .navigation-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #FFFFFF;
        padding: 100px 20px 30px;
        transition: left 0.3s ease;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.05);
        z-index: 999;
        overflow-y: auto;
    }
    
    .navigation-wrapper.show {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        justify-content: space-between;
    }
    
    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: #FCF9F9;
        margin-top: 10px;
        margin-left: 15px;
        width: calc(100% - 15px);
        opacity: 1;
        visibility: visible;
        display: none;
    }
    
    .dropdown-menu.show {
        display: block;
        transform: none;
    }
    
    .dropdown-item {
        padding: 8px 20px;
        white-space: normal;
    }
    
    .dropdown-item:hover {
        padding-left: 25px;
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: #eb2a79;
    transition: all 0.3s ease;
}

.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);
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }
}

/* Overlay for mobile menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.show {
    display: block;
    opacity: 1;
} 



/* Beautiful Product Details Page CSS */

.product-details-container {
    padding: 60px 0;
    background: #FFFFFF;
    font-family: 'Inter', sans-serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Breadcrumb */
.breadcrumb-wrapper {
    margin-bottom: 40px;
    font-size: 13px;
}

.breadcrumb-link {
    color: #9A8A8A;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.breadcrumb-link:hover {
    color: #eb2a79;
}

.breadcrumb-separator {
    color: #E0D0D0;
    margin: 0 8px;
}

.breadcrumb-current {
    color: #4A3A3A;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Product Details Grid */
.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Gallery Section */
.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image-wrapper {
    background: #FCF9F9;
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 20px;
    border: 1px solid #F5F0F0;
    transition: all 0.3s ease;
}

.main-image-wrapper:hover {
    box-shadow: 0 20px 40px -15px rgba(212, 165, 165, 0.1);
}

.main-product-image {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.main-image-wrapper:hover .main-product-image {
    transform: scale(1.02);
}

/* Thumbnail Gallery */
.thumbnail-list {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    background: #FCF9F9;
    border-radius: 15px;
    padding: 10px;
    border: 1px solid #F5F0F0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail-item:hover {
    border-color: #eb2a79;
    transform: translateY(-3px);
}

.thumbnail-item.active {
    border-color: #eb2a79;
    box-shadow: 0 10px 20px -10px #eb2a79;
}

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

/* Product Info */
.product-info {
    padding: 20px 0;
}

.product-category {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #eb2a79;
    background: #FCF9F9;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 500;
    color: #2C2A2A;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

/* Price */
.product-price-wrapper {
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-currency {
    font-size: 24px;
    color: #eb2a79;
    font-weight: 300;
}

.price-value {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 500;
    color: #2C2A2A;
    line-height: 1;
}

/* Description */
.product-description {
    margin-bottom: 30px;
}

.description-text {
    font-size: 16px;
    line-height: 1.8;
    color: #6F6A6A;
    margin-bottom: 15px;
    font-weight: 300;
}

/* Attributes */
.attributes-list {
    background: #FCF9F9;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #F5F0F0;
}

.attribute-item {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #F0E8E8;
}

.attribute-item:last-child {
    border-bottom: none;
}

.attribute-label {
    width: 120px;
    font-size: 14px;
    font-weight: 500;
    color: #4A3A3A;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.attribute-value {
    flex: 1;
    font-size: 15px;
    color: #7A6A6A;
    font-weight: 300;
}

/* Purchase Section */
.purchase-section {
    margin-bottom: 30px;
}

.quantity-wrapper {
    margin-bottom: 20px;
}

.quantity-select {
    width: 100%;
    max-width: 150px;
    padding: 12px 20px;
    background: #FCF9F9;
    border: 1px solid #F0E8E8;
    border-radius: 12px;
    font-size: 14px;
    color: #2C2A2A;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-select:hover {
    border-color: #eb2a79;
}

.quantity-select:focus {
    outline: none;
    border-color: #eb2a79;
    box-shadow: 0 0 0 3px rgba(212, 165, 165, 0.1);
}

/* Add to Cart Button */
.add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    background: #eb2a79;
    border: 1px solid #eb2a79;
    border-radius: 50px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.add-to-cart-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #C49595;
    border-color: #C49595;
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -15px #eb2a79;
}

.add-to-cart-btn:hover i {
    transform: translateX(-3px);
}

.add-to-cart-btn:active {
    transform: translateY(-1px);
}

/* Elegant Divider */
.elegant-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #F0E8E8, transparent);
    margin: 40px 0 30px;
}

/* Secure Checkout Badge */
.secure-checkout-badge {
    background: linear-gradient(135deg, #FCF9F9 0%, #FFFFFF 100%);
    border: 1px solid #F5F0F0;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.secure-checkout-badge:hover {
    border-color: #eb2a79;
    box-shadow: 0 15px 30px -15px rgba(212, 165, 165, 0.1);
}

.badge-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.badge-header i {
    font-size: 20px;
    color: #eb2a79;
}

.badge-title {
    font-size: 15px;
    font-weight: 500;
    color: #2C2A2A;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.payment-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-icon {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
    transform: translateY(-3px);
}

/* Additional Info */
.additional-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #FCF9F9;
    border-radius: 12px;
    border: 1px solid #F5F0F0;
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: #eb2a79;
    transform: translateY(-3px);
}

.info-item i {
    font-size: 18px;
    color: #eb2a79;
}

.info-item span {
    font-size: 13px;
    color: #5A4A4A;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-title {
        font-size: 36px;
    }
    
    .price-value {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-gallery {
        position: static;
    }
    
    .main-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .thumbnail-list {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .product-details-container {
        padding: 40px 0;
    }
    
    .product-title {
        font-size: 32px;
    }
    
    .price-value {
        font-size: 38px;
    }
    
    .additional-info {
        grid-template-columns: 1fr;
    }
    
    .attribute-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .attribute-label {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 28px;
    }
    
    .price-value {
        font-size: 34px;
    }
    
    .price-currency {
        font-size: 20px;
    }
    
    .add-to-cart-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }
    
    .badge-header {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-icons {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-gallery {
    animation: fadeIn 0.5s ease;
}

.product-info {
    animation: fadeIn 0.5s ease;
    animation-delay: 0.1s;
    animation-fill-mode: both;
}

/* Hover Effects */
.main-image-wrapper {
    position: relative;
    overflow: hidden;
}

.main-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-image-wrapper:hover::after {
    opacity: 1;
} 



/* You May Also Like Section - Matching Product Design */

.related-products-section {
    padding: 60px 0 80px;
    background: #FFFFFF;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 500;
    color: #2C2A2A;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    text-transform: capitalize;
}

.section-subtitle {
    font-size: 18px;
    color: #9A8A8A;
    font-weight: 300;
    margin-bottom: 20px;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.decoration-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #eb2a79, transparent);
}

.decoration-icon {
    color: #eb2a79;
    font-size: 14px;
    opacity: 0.7;
}

/* Products Grid */
.products-grid {
    margin-top: 30px;
}

.grid-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Product Card - Exact Match to Your Design */
.product-card {
    height: 100%;
    transition: transform 0.3s ease;
}

.card-inner {
    background: #FFEFF2;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(220, 200, 200, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover .card-inner {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px -15px rgba(180, 160, 160, 0.2);
    border-color: rgba(200, 170, 170, 0.3);
}

/* Card Image */
.card-image {
    position: relative;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #FDF8F8 0%, #FFFFFF 100%);
    overflow: hidden;
}

.product-image {
    max-width: 80%;
    height: auto;
    transition: transform 0.6s ease;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.03));
}

.product-card:hover .product-image {
    transform: scale(1.05) translateY(-5px);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Card Details */
.card-details {
    padding: 15px 25px 20px;
    text-align: center;
    position: relative;
    z-index: 5;
    background: #FFFFFF;
    flex: 1;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: #2C2A2A;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-price {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 300;
    color: #4A3A3A;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.product-price span {
    font-weight: 400;
    letter-spacing: -0.01em;
    color: #eb2a79;
}

/* Card Actions */
.card-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.product-card:hover .card-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5C4A4A;
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(220, 200, 200, 0.2);
}

.action-btn i {
    font-size: 16px;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #eb2a79;
    color: #FFFFFF;
    transform: scale(1.1);
    border-color: #eb2a79;
    box-shadow: 0 10px 20px -10px #eb2a79;
}

.action-btn.active {
    background: #eb2a79;
    color: #FFFFFF!important;
    border-color: #eb2a79;
}

.action-btn.active i {
    color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .grid-row {
        gap: 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .product-name {
        font-size: 18px;
    }
    
    .product-price {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .related-products-section {
        padding: 40px 0 60px;
    }
    
    .grid-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .card-image {
        padding: 25px 25px 10px;
    }
    
    .card-actions {
        opacity: 1;
        transform: translateX(0);
        top: 15px;
        right: 15px;
    }
    
    .action-btn {
        width: 36px;
        height: 36px;
    }
    
    .action-btn i {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .grid-row {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .decoration-line {
        width: 40px;
    }
    
    .card-details {
        padding: 15px 20px 20px;
    }
    
    .product-name {
        font-size: 18px;
    }
}

/* Animation */
@media (prefers-reduced-motion: no-preference) {
    .grid-item {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeUp 0.5s ease forwards;
    }
    
    .grid-item:nth-child(1) { animation-delay: 0.1s; }
    .grid-item:nth-child(2) { animation-delay: 0.2s; }
    .grid-item:nth-child(3) { animation-delay: 0.3s; }
    
    @keyframes fadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Hover Effects */
.card-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    box-shadow: 0 0 0 0 rgba(212, 165, 165, 0.3);
    transition: box-shadow 0.3s ease;
    pointer-events: none;
}

.product-card:hover .card-inner::after {
    box-shadow: 0 0 0 2px rgba(212, 165, 165, 0.2);
}

/* Simple Clean Cart CSS */

.empty-cart-wrapper {
    padding: 80px 0;
    background: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.empty-cart-box {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 20px;
}

.empty-cart-image {
    max-width: 200px;
    margin-bottom: 30px;
}

.empty-cart-heading {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.empty-cart-text {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.empty-cart-button {
    display: inline-block;
    padding: 12px 30px;
    background: #eb2a79;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.empty-cart-button:hover {
    background: #C49595;
}

/* Cart Section */
.cart-main-section {
    padding: 60px 0;
    background: #FFFFFF;
}

.cart-page-header {
    margin-bottom: 40px;
}

.cart-page-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.cart-layout {
    display: flex;
    gap: 30px;
}

.cart-items-column {
    flex: 1.5;
}

.cart-summary-column {
    flex: 1;
}

.cart-items-container {
    background: #FFFFFF;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
}

.cart-items-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-items-table thead th {
    text-align: left;
    padding: 15px 10px;
    border-bottom: 2px solid #f0f0f0;
    color: #666;
    font-weight: 500;
    font-size: 14px;
}

.cart-items-table tbody td {
    padding: 15px 10px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.cart-remove-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 50%;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.cart-remove-btn:hover {
    background: #ff4444;
    border-color: #ff4444;
    color: #fff;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item-name {
    font-weight: 500;
    color: #333;
}

.cart-item-price {
    color: #666;
}

.cart-item-qty {
    display: inline-block;
    min-width: 40px;
    padding: 5px 10px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 5px;
    text-align: center;
}

.cart-item-total {
    font-weight: 600;
    color: #eb2a79;
}

/* Cart Summary */
.cart-summary-box {
    background: #FFFFFF;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    position: sticky;
    top: 20px;
}

.summary-heading {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #666;
}

.summary-amount {
    font-weight: 500;
}

.summary-amount.processing {
    color: #eb2a79;
}

.summary-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 15px 0;
}

.total-row {
    font-size: 18px;
    color: #333;
    margin-bottom: 25px;
}

.total-amount {
    font-size: 22px;
    font-weight: 600;
    color: #eb2a79;
}

.checkout-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: #eb2a79;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s;
}

.checkout-button:hover {
    background: #C49595;
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .cart-layout {
        flex-direction: column;
    }
    
    .cart-summary-box {
        position: static;
    }
}

@media (max-width: 768px) {
    .cart-items-table thead {
        display: none;
    }
    
    .cart-items-table tbody tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #eee;
        border-radius: 5px;
        padding: 15px;
    }
    
    .cart-items-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border: none;
    }
    
    .cart-items-table tbody td:before {
        content: attr(data-label);
        font-weight: 500;
        color: #666;
    }
    
    .cart-remove-btn {
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    .cart-page-title {
        font-size: 28px;
    }
    
    .empty-cart-heading {
        font-size: 20px;
    }
}


/* HERO SECTION */

.beauty-hero{
  position:relative;
  padding:110px 8%;
  overflow:hidden;
  background:linear-gradient(135deg,#fdf2f8,#fce7f3);
}

/* Diagonal Pattern */
.beauty-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:repeating-linear-gradient(
    135deg,
    rgba(0,0,0,0.03) 0px,
    rgba(0,0,0,0.03) 1px,
    transparent 1px,
    transparent 30px
  );
  z-index:0;
}

/* Circle Decorative */
.beauty-hero::after{
  content:"";
  position:absolute;
  width:350px;
  height:350px;
  border:2px solid rgba(212,165,165,0.3);
  border-radius:50%;
  top:80px;
  right:120px;
  box-shadow:
    0 0 0 40px rgba(212,165,165,0.15),
    0 0 0 80px rgba(212,165,165,0.08);
  z-index:0;
}

/* CONTAINER */
.beauty-hero-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
  position:relative;
  z-index:2;
}

/* LEFT CONTENT */
.beauty-hero-content{
  flex:1;
}

.beauty-hero-badge{
  display:inline-block;
  background:rgba(212,165,165,0.15);
  color:#eb2a79;
  padding:8px 20px;
  border-radius:30px;
  font-size:14px;
  margin-bottom:20px;
}

.beauty-hero-content h1{
  font-size:52px;
  font-weight:700;
  color:#1f2937;
  margin-bottom:20px;
  line-height:1.2;
}

.beauty-hero-content h1 span{
  color:#eb2a79;
}

.beauty-hero-content p{
  font-size:16px;
  color:#4b5563;
  margin-bottom:30px;
  max-width:500px;
  line-height:1.6;
}

/* BUTTONS */
.beauty-hero-buttons{
  display:flex;
  gap:20px;
}

.beauty-hero-btn{
  padding:12px 30px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s ease;
}

.beauty-hero-btn-primary{
  background:#eb2a79;
  color:white;
  box-shadow:0 10px 25px rgba(212,165,165,0.4);
}

.beauty-hero-btn-primary:hover{
  transform:translateY(-3px);
  background:#333;
  color: #fff;
}

.beauty-hero-btn-outline{
  border:2px solid #eb2a79;
  color:#eb2a79;
}

.beauty-hero-btn-outline:hover{
  background:#eb2a79;
  color:white;
}

/* IMAGES */
.beauty-hero-images{
  flex:1;
  display:flex;
  gap:20px;
}

.beauty-hero-img-large img{
  width:100%;
  border-radius:25px;
  object-fit:cover;
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.beauty-hero-img-small-group{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.beauty-hero-img-small-group img{
  width:220px;
  height:220px;
  border-radius:25px;
  object-fit:cover;
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

#cookiePopup {
position: fixed;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 100%;
background: #eb2a79;
padding: 15px;
display: flex;
flex-wrap: wrap;
z-index: 999999;
gap: 20px;
align-items: center;
justify-content: center;
display: none;
}
#cookiePopup h4 {
font-size: 25px;
color: #fff;
margin-bottom: 15px;
}
#cookiePopup p {
font-size: 15px;
color: #fff;
margin-bottom: 15px;
letter-spacing: 1px;
line-height: 1.5;
max-width: 850px;
}
#cookiePopup p a {
color: #fff;
text-decoration: underline;
}
.cookieBtns {
display: inline-flex;
gap: 10px;
}
.cookieBtns button {
font-size: 15px;
margin: 10px 0;
color: #fff;
padding: 10px 20px;
border-radius: 5px;
background: #eb2a79;
cursor: pointer;
transition: all 0.5s ease;
border: 2px solid #fff;
}
.cookieBtns button:last-child {
background-color: #fff;
color: #eb2a79;
}

/* Footer Bottom Adjustment */
.modern-footer .footer-bottom {
    margin-bottom: 0;
    padding-bottom: 20px;
}



@media (max-width: 768px) {
    .modern-footer {
        padding-bottom: 120px; /* More space for stacked cookie */
    }
    
}



/* Animation for cookie popup */
@keyframes slideUpFooter {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}



.page-header {
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.page-header h1, .breadcrumb, .breadcrumb a, .breadcrumb li{color: #fff!important;}

.display-3 {color: #fff;}
.breadcrumb {color: #fff;;}



/* Shop Page Header with Black Overlay */

.page-header {
    position: relative;
    background: url('../img/bg.jpg') center center no-repeat;
    background-size: cover;
    min-height: 400px;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

/* Black Overlay */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(199, 152, 152, 0.2);
    z-index: 1;
    pointer-events: none;
}

/* Optional subtle gradient overlay */
.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-header .container.text-center {
    text-align: center;
}

.page-header h1.display-3 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: slideInDown 0.5s ease;
}

/* Breadcrumb Styling */
.page-header .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    list-style: none;
    animation: slideInDown 0.5s ease;
    animation-delay: 0.1s;
    animation-fill-mode: both;
}

.page-header .breadcrumb-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 30px;
}

.page-header .breadcrumb-item a:hover {
    color: #FFFFFF;
    background: rgba(212, 165, 165, 0.2);
}

.page-header .breadcrumb-item.active {
    color: #fff;
    font-weight: 500;
    padding: 5px 10px;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    content: "\f054"; /* Font Awesome chevron-right icon */
    color: rgba(255, 255, 255, 0.3);
    padding: 0 8px;
    font-size: 14px;
    line-height: 1;
    display: inline-block;
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        min-height: 350px;
    }
    
    .page-header h1.display-3 {
        font-size: 48px;
    }
    
    .page-header .breadcrumb {
        padding: 10px 20px;
    }
    
    .page-header .breadcrumb-item {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page-header {
        min-height: 300px;
    }
    
    .page-header h1.display-3 {
        font-size: 36px;
    }
    
    .page-header .breadcrumb {
        padding: 8px 16px;
    }
    
    .page-header .breadcrumb-item {
        font-size: 13px;
    }
    
    .page-header .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 4px;
    }
}

/* Optional: Different overlay intensities */
.page-header.light-overlay::before {
    background: rgba(0, 0, 0, 0.4);
}

.page-header.dark-overlay::before {
    background: rgba(0, 0, 0, 0.8);
}


/* Checkout Page - Beautiful Elegant Design */

/* Empty Cart State */
.empty-cart-wrapper {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FCF9F9 0%, #FFFFFF 100%);
}

.empty-cart-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 50px 40px;
    background: #FFFFFF;
    border-radius: 40px;
    box-shadow: 0 30px 60px -30px rgba(212, 165, 165, 0.2);
    border: 1px solid #F0E8E8;
    position: relative;
    overflow: hidden;
}

.empty-cart-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(212, 165, 165, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.empty-cart-icon i {
    font-size: 35px;
    color: #eb2a79;
    position: relative;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(212, 165, 165, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.empty-cart-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: #2C2A2A;
    margin-bottom: 10px;
}

.empty-cart-message {
    color: #7A6A6A;
    margin-bottom: 25px;
    font-weight: 300;
}

.empty-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #eb2a79;
    border: 1px solid #eb2a79;
    border-radius: 50px;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.empty-cart-btn:hover {
    background: #C49595;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -15px #eb2a79;
}

.empty-cart-btn i {
    transition: transform 0.3s ease;
}

.empty-cart-btn:hover i {
    transform: translateX(5px);
}

.empty-bg-image {
    position: absolute;
    bottom: -20px;
    right: -20px;
    opacity: 0.05;
    width: 150px;
    transform: rotate(-10deg);
}

/* Checkout Section */
.checkout-section {
    background: #FCF9F9;
    font-family: 'Inter', sans-serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header */
.section-header {
    margin-bottom: 50px;
}

.header-badge {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #eb2a79;
    background: rgba(212, 165, 165, 0.1);
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.header-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 500;
    color: #2C2A2A;
    margin-bottom: 10px;
}

.header-subtitle {
    color: #7A6A6A;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.deco-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #eb2a79, transparent);
}

.deco-star {
    color: #eb2a79;
    font-size: 14px;
    opacity: 0.7;
}

/* Checkout Grid */
.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: start;
}

/* Checkout Cards */
.checkout-card {
    background: #FFFFFF;
    border: 1px solid #F0E8E8;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.03);
}

.card-header {
    padding: 20px 25px;
    background: #FCF9F9;
    border-bottom: 1px solid #F0E8E8;
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-icon {
    width: 40px;
    height: 40px;
    background: #eb2a79;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 18px;
}

.card-header .header-title {
    font-size: 18px;
    margin: 0;
    flex: 1;
}



.card-body {
    padding: 25px;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    position: relative;
}

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

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #4A3A3A;
    margin-bottom: 8px;
}

.required {
    color: #eb2a79;
}

.form-input, .form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #F0E8E8;
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #FFFFFF;
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: #eb2a79;
    box-shadow: 0 0 0 3px rgba(212, 165, 165, 0.1);
}

.input-focus {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #eb2a79;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.form-input:focus ~ .input-focus,
.form-select:focus ~ .input-focus {
    width: 100%;
}

/* Payment Icons */
.payment-icons-wrapper {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.payment-icon {
    width: 75px;
    height: 35px;
    background: #FCF9F9;
    /* border: 1px solid #F0E8E8; */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7A6A6A;
    font-size: 55px;
    transition: all 0.3s ease;
    padding: 0;
}

.payment-icon:hover {
    transform: translateY(-3px);
    border-color: #eb2a79;
    color: #eb2a79;
    box-shadow: 0 10px 20px -10px rgba(212, 165, 165, 0.2);
}

.payment-icon.visa:hover { color: #1A1F71; }
.payment-icon.mastercard:hover { color: #EB001B; }
.payment-icon.discover:hover { color: #FF6000; }
.payment-icon.amex:hover { color: #006FCF; }

/* Secure Note */
.secure-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px;
    background: #FCF9F9;
    border-radius: 12px;
    font-size: 13px;
    color: #7A6A6A;
}

.secure-note i {
    color: #eb2a79;
    font-size: 16px;
}

/* Order Summary Card */
.order-summary-card {
    background: #FFFFFF;
    border: 1px solid #F0E8E8;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 20px;
}

.summary-header {
    padding: 20px 25px;
    background: #FCF9F9;
    border-bottom: 1px solid #F0E8E8;
    display: flex;
    align-items: center;
    gap: 12px;
}

.summary-header i {
    font-size: 20px;
    color: #eb2a79;
}

.summary-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin: 0;
    flex: 1;
}

.item-count {
    font-size: 13px;
    color: #7A6A6A;
    background: rgba(212, 165, 165, 0.1);
    padding: 4px 12px;
    border-radius: 30px;
}

.summary-body {
    padding: 25px;
}

/* Cart Items List */
.cart-items-list {
    margin-bottom: 20px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 10px;
}

.cart-items-list::-webkit-scrollbar {
    width: 4px;
}

.cart-items-list::-webkit-scrollbar-track {
    background: #F5F0F0;
    border-radius: 4px;
}

.cart-items-list::-webkit-scrollbar-thumb {
    background: #eb2a79;
    border-radius: 4px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #F5F0F0;
}

.item-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.item-name {
    font-weight: 500;
    color: #2C2A2A;
}

.item-qty {
    font-size: 13px;
    color: #7A6A6A;
    background: #FCF9F9;
    padding: 2px 8px;
    border-radius: 30px;
}

.item-price {
    font-weight: 500;
    color: #eb2a79;
}

/* Summary Divider */
.summary-divider {
    height: 1px;
    background: #F0E8E8;
    margin: 15px 0;
}

/* Summary Rows */
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.summary-label {
    color: #7A6A6A;
    font-size: 14px;
}

.summary-value {
    font-weight: 500;
    color: #2C2A2A;
}

.free-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #eb2a79;
}

.free-badge i {
    font-size: 14px;
}

.total {
    margin-top: 10px;
}

.total-label {
    font-size: 16px;
    font-weight: 600;
    color: #2C2A2A;
}

.total-value {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #eb2a79;
}

/* Terms Checkbox */
.terms-checkbox {
    margin: 25px 0;
}

.checkbox-container {
    display: flex;
    gap: 15px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.7;
    color: #7A6A6A;
    position: relative;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #FFFFFF;
    border: 2px solid #F0E8E8;
    border-radius: 6px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-container:hover .checkmark {
    border-color: #eb2a79;
}

.checkbox-container input:checked ~ .checkmark {
    background: #eb2a79;
    border-color: #eb2a79;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-text {
    flex: 1;
}

.checkbox-text a {
    color: #eb2a79;
    text-decoration: none;
    font-weight: 500;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 16px;
    background: #eb2a79;
    border: 1px solid #eb2a79;
    border-radius: 50px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -10px #eb2a79;
}

.submit-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    background: #C49595;
    border-color: #C49595;
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -15px #eb2a79;
}

.submit-btn:hover i:last-child {
    transform: translateX(5px);
}

/* Guarantee Badge */
.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px;
    background: #FCF9F9;
    border-radius: 12px;
    font-size: 13px;
    color: #7A6A6A;
}

.guarantee-badge i {
    color: #eb2a79;
    font-size: 16px;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.4;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .order-summary-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .header-title {
        font-size: 32px;
    }
    
    .empty-cart-card {
        padding: 40px 25px;
    }
}

@media (max-width: 480px) {
    .card-header {
        flex-wrap: wrap;
    }
    
    .payment-icons-wrapper {
        justify-content: center;
    }
    
    .total-value {
        font-size: 22px;
    }
    
    .submit-btn {
        font-size: 15px;
    }
}



/* Blog Details Page - Beautiful Elegant Design */





/* Header Sparkles */
.header-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.sparkle {
    position: absolute;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.4);
    animation: sparkleFloat 4s ease-in-out infinite;
}

.sparkle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
    color: #eb2a79;
}

.sparkle:nth-child(3) {
    bottom: 25%;
    left: 25%;
    animation-delay: 2s;
}

.sparkle:nth-child(4) {
    bottom: 35%;
    right: 15%;
    animation-delay: 3s;
}

.page-header .container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-content {
    max-width: 700px;
    margin: 0 auto;
}

/* Blog Badge */
.blog-badge {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, 0.51);
    backdrop-filter: blur(5px);
    padding: 8px 22px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeInDown 0.5s ease;
}

/* Page Title */
.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: slideInDown 0.5s ease;
}

/* Title Decoration */
.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    animation: fadeInUp 0.5s ease;
    animation-delay: 0.1s;
    animation-fill-mode: both;
}

.deco-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.deco-dot {
    color: #eb2a79;
    font-size: 14px;
    animation: pulse 2s ease-in-out infinite;
}

/* Breadcrumb */
.beauty-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 60px;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    list-style: none;
    animation: slideInDown 0.5s ease;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 30px;
}

.breadcrumb-item a i {
    font-size: 14px;
    color: #fff;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #FFFFFF;
    background: rgba(212, 165, 165, 0.2);
}

.breadcrumb-item a:hover i {
    transform: scale(1.1);
}

.breadcrumb-item.active {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    padding: 5px 10px;
}

.breadcrumb-item.active i {
    font-size: 14px;
    color: #eb2a79;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

.breadcrumb-separator i {
    font-size: 12px;
}

/* ===== BLOG DETAIL SECTION ===== */
.blog-detail-section {
    background: linear-gradient(135deg, #FCF9F9 0%, #FFFFFF 100%);
    font-family: 'Inter', sans-serif;
    padding: 60px 0 80px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Blog Detail Card */
.blog-detail-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 40px;
    box-shadow: 0 30px 60px -30px rgba(212, 165, 165, 0.2);
    border: 1px solid #F0E8E8;
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
}

/* Card Decoration */
.card-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #eb2a79, #F0D8D8, #eb2a79);
    z-index: 2;
}

.card-decoration .deco-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 165, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.card-decoration .deco-circle:nth-child(1) {
    top: -50px;
    right: -30px;
    animation: floatCircle 15s ease-in-out infinite;
}

.card-decoration .deco-circle:nth-child(2) {
    bottom: -50px;
    left: -30px;
    width: 200px;
    height: 200px;
    animation: floatCircle 20s ease-in-out infinite reverse;
}

.card-decoration .deco-dot {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 24px;
    color: #eb2a79;
    opacity: 0.1;
    animation: sparkleFloat 5s ease-in-out infinite;
}

/* Blog Content Wrapper */
.blog-content-wrapper {
    padding: 40px;
    position: relative;
    z-index: 5;
}

/* Blog Footer Navigation */
.blog-footer-nav {
    padding: 20px 40px 30px;
    border-top: 1px solid #F0E8E8;
    background: #FCF9F9;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.prev-post, .next-post {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: #FFFFFF;
    border: 1px solid #F0E8E8;
    border-radius: 50px;
    text-decoration: none;
    color: #7A6A6A;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.prev-post i, .next-post i {
    font-size: 14px;
    color: #eb2a79;
    transition: all 0.3s ease;
}

.prev-post:hover, .next-post:hover {
    background: #eb2a79;
    border-color: #eb2a79;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -15px #eb2a79;
}

.prev-post:hover i, .next-post:hover i {
    color: #FFFFFF;
    transform: translateX(-3px);
}

.next-post:hover i {
    transform: translateX(3px);
}

.back-to-blog {
    width: 50px;
    height: 50px;
    background: #FCF9F9;
    border: 1px solid #F0E8E8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eb2a79;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    background: #eb2a79;
    border-color: #eb2a79;
    color: #FFFFFF;
    transform: rotate(90deg) scale(1.1);
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-5px) rotate(5deg);
        opacity: 0.6;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes floatCircle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-15px, 15px) scale(1.1);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .page-title {
        font-size: 52px;
    }
    
    .blog-content-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-header.blog-header {
        min-height: 350px;
    }
    
    .page-title {
        font-size: 42px;
    }
    
    .blog-badge {
        font-size: 12px;
        padding: 6px 18px;
    }
    
    .beauty-breadcrumb {
        padding: 10px 20px;
        flex-wrap: wrap;
    }
    
    .breadcrumb-item a,
    .breadcrumb-item.active {
        font-size: 14px;
    }
    
    .blog-content-wrapper {
        padding: 25px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .prev-post, .next-post {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-header.blog-header {
        min-height: 300px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .deco-line {
        width: 40px;
    }
    
    .beauty-breadcrumb {
        padding: 8px 16px;
    }
    
    .breadcrumb-item a span,
    .breadcrumb-item.active span {
        display: none;
    }
    
    .breadcrumb-item a i,
    .breadcrumb-item.active i {
        font-size: 16px;
        margin: 0 5px;
    }
    
    .breadcrumb-separator {
        display: none;
    }
    
    .blog-detail-card {
        border-radius: 30px;
    }
    
    .blog-content-wrapper {
        padding: 20px;
    }
    
    .blog-footer-nav {
        padding: 20px;
    }
    
    .prev-post, .next-post {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .back-to-blog {
        width: 45px;
        height: 45px;
    }
}





.thankyou-section {
    background: #FCF9F9;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thankyou-box {
    background: #FFFFFF;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(212, 165, 165, 0.1);
    border: 1px solid #F0E8E8;
}

.thankyou-animation {
    display: flex;
    justify-content: center;
}

.thankyou-img {
    border-radius: 50%;
    background: #FCF9F9;
    padding: 10px;
}

.btn:hover {
    background: #C49595 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px #eb2a79;
}

@media (max-width: 768px) {
    .thankyou-box {
        padding: 30px 20px !important;
    }
    
    h2 {
        font-size: 24px;
    }
}


 


/* Terms Page - Clean Elegant Design */

.terms-section {
    background: #FCF9F9;
    font-family: 'Inter', sans-serif;
    padding: 60px 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.header-badge {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #eb2a79;
    background: rgba(212, 165, 165, 0.1);
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.header-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 500;
    color: #2C2A2A;
    margin-bottom: 10px;
}

.header-subtitle {
    color: #7A6A6A;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.deco-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #eb2a79, transparent);
}

.deco-star {
    color: #eb2a79;
    font-size: 14px;
    opacity: 0.7;
}

/* Terms Card */
.terms-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 40px -20px rgba(212, 165, 165, 0.2);
    border: 1px solid #F0E8E8;
    overflow: hidden;
}

/* Decorative Elements */
.terms-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    pointer-events: none;
}

.terms-decoration .deco-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 165, 0.03) 0%, transparent 70%);
}

.terms-decoration .deco-circle:nth-child(1) {
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
}

.terms-decoration .deco-circle:nth-child(2) {
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
}

.terms-decoration .deco-dot {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 24px;
    color: #eb2a79;
    opacity: 0.1;
}

/* Notice Box */
.notice-box {
    background: rgba(212, 165, 165, 0.03);
    border-left: 4px solid #eb2a79;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
}

.notice-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(212, 165, 165, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eb2a79;
    font-size: 20px;
}

.notice-content {
    flex: 1;
}

.notice-content h5 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #2C2A2A;
    margin-bottom: 15px;
    line-height: 1.5;
}

.notice-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #7A6A6A;
    margin-bottom: 15px;
}

.company-highlight {
    color: #eb2a79;
    font-weight: 500;
}

.notice-strong {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(212, 165, 165, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
}

.notice-strong i {
    color: #eb2a79;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.notice-strong span {
    font-size: 13px;
    font-weight: 600;
    color: #4A3A3A;
    line-height: 1.6;
}

/* Terms Content */
.terms-content {
    margin-top: 20px;
}

.terms-block {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid #F0E8E8;
}

.terms-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.block-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: #2C2A2A;
}

.title-number {
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    color: #eb2a79;
    background: rgba(212, 165, 165, 0.1);
    padding: 4px 12px;
    border-radius: 30px;
    letter-spacing: 0.5px;
}

.block-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #7A6A6A;
    margin-bottom: 15px;
}

/* Product List */
.product-list {
    background: #FCF9F9;
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
}

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #FFFFFF;
    border: 1px solid #F0E8E8;
    border-radius: 8px;
    font-size: 14px;
    color: #4A3A3A;
}

.product-price {
    color: #eb2a79;
    font-weight: 500;
}

/* Contact Info Box */
.contact-info-box {
    background: #FCF9F9;
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
}

.contact-info-box p {
    margin-bottom: 8px;
}

.contact-info-box a {
    color: #eb2a79;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-box a:hover {
    text-decoration: underline;
}

.contact-info-box .note {
    font-size: 13px;
    color: #9A8A8A;
    margin-top: 10px;
    font-style: italic;
}

/* Address Box */
.address-box {
    background: #FCF9F9;
    border-radius: 12px;
    padding: 20px;
    margin-top: 15px;
}

.address-box p {
    margin: 0;
    line-height: 1.8;
}

/* Styled List */
.styled-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.styled-list li {
    position: relative;
   
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.7;
    color: #7A6A6A;
}

.styled-list li::before {
    
    position: absolute;
    left: 8px;
    color: #eb2a79;
    font-size: 18px;
}

/* Terms Footer */
.terms-footer {
    margin-top: 40px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #F0E8E8;
}

.back-to-top-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: #FCF9F9;
    border: 1px solid #F0E8E8;
    border-radius: 50px;
    color: #7A6A6A;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.back-to-top-link i {
    color: #eb2a79;
    transition: transform 0.3s ease;
}

.back-to-top-link:hover {
    background: #eb2a79;
    border-color: #eb2a79;
    color: #FFFFFF;
    transform: translateY(-3px);
}

.back-to-top-link:hover i {
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .terms-card {
        padding: 30px 20px;
    }
    
    .notice-box {
        flex-direction: column;
        gap: 15px;
    }
    
    .notice-icon {
        margin: 0 auto;
    }
    
    .block-title {
        font-size: 20px;
        flex-wrap: wrap;
    }
    
    .header-title {
        font-size: 32px;
    }
    
    .product-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .terms-card {
        padding: 25px 15px;
    }
    
    .block-title {
        font-size: 18px;
    }
    
    .title-number {
        font-size: 14px;
        padding: 3px 10px;
    }
    
    .notice-strong {
        flex-direction: column;
        gap: 8px;
    }
    
    .header-title {
        font-size: 28px;
    }
    
    .deco-line {
        width: 40px;
    }
}

/* Contact Page - Beautiful Design */

.contact-section {
    background: linear-gradient(135deg, #FCF9F9 0%, #FFFFFF 100%);
    font-family: 'Inter', sans-serif;
    padding: 60px 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header - Matching your design */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.header-badge {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #eb2a79;
    background: rgba(212, 165, 165, 0.1);
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.header-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 500;
    color: #2C2A2A;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.header-subtitle {
    color: #7A6A6A;
    font-size: 16px;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.deco-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #eb2a79, transparent);
}

.deco-star {
    color: #eb2a79;
    font-size: 14px;
    opacity: 0.7;
}

/* Contact Cards */
.contact-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 30px;
    padding: 35px 25px 30px;
    text-align: center;
    border: 1px solid #F0E8E8;
    box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px -20px rgba(212, 165, 165, 0.2);
    border-color: #eb2a79;
}

/* Card Icon */
.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 165, 165, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 30px;
    color: #eb2a79;
    transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
    background: #eb2a79;
}

.contact-card:hover .card-icon i {
    color: #FFFFFF;
}

/* Card Title */
.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: #2C2A2A;
    margin-bottom: 15px;
}

/* Card Divider */
.card-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #eb2a79, transparent);
    margin: 0 auto 20px;
}

/* Card Content - NO PADDING LEFT/RIGHT */
.card-content {
    position: relative;
    z-index: 2;
}

/* Address */
.address-line {
    color: #7A6A6A;
    font-size: 14px;
    margin-bottom: 5px;
}

.address-detail {
    color: #2C2A2A;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    text-align: left;
    /* REMOVED padding */
}

.contact-item i {
    width: 30px;
    height: 30px;
    background: rgba(212, 165, 165, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #eb2a79;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Fixed envelope icon */
.contact-item i.fa-envelope {
    border-radius: 50%; /* Ensures circle */
    background: rgba(212, 165, 165, 0.1);
}

.contact-card:hover .contact-item i {
    background: #eb2a79;
    color: #FFFFFF;
}

.contact-label {
    font-size: 13px;
    color: #9A8A8A;
    display: block;
    margin-bottom: 2px;
}

.contact-link {
    color: #2C2A2A;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #eb2a79;
}

/* Hours */
.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(212, 165, 165, 0.03);
    border-radius: 12px;
    margin-bottom: 15px;
}

.days {
    font-weight: 500;
    color: #2C2A2A;
}

.hours {
    color: #eb2a79;
    font-weight: 500;
}

.support-note {
    color: #9A8A8A;
    font-size: 13px;
    font-style: italic;
    margin: 0;
}

/* Card Decoration */
.card-decoration {
    position: absolute;
    bottom: 15px;
    right: 20px;
    display: flex;
    gap: 5px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.contact-card:hover .card-decoration {
    opacity: 0.6;
}

.card-decoration .deco-dot {
    width: 4px;
    height: 4px;
    background: #eb2a79;
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 992px) {
    .header-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .header-title {
        font-size: 30px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .card-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .header-title {
        font-size: 28px;
    }
    
    .header-subtitle {
        font-size: 15px;
    }
    
    .deco-line {
        width: 40px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 24px;
    }
    
    .hours-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

/* Animation */
.contact-card {
    animation: fadeInUp 0.5s ease;
    animation-fill-mode: both;
}

.contact-card:nth-child(1) { animation-delay: 0.1s; }
.contact-card:nth-child(2) { animation-delay: 0.2s; }
.contact-card:nth-child(3) { animation-delay: 0.3s; }

.header-step {
    width: 28px;
    height: 28px;
    background: rgba(212, 165, 165, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #eb2a79;
    display: none;
}

/* new css */

.img-box{
    max-width: 100%;
    display: block;
    margin: auto;
    overflow: hidden;
}

.img-box img{
    width: 100%;
    object-fit: cover;
}

.pt-80{
    padding-top: 80px;
}

.pb-80{
    padding-bottom: 80px;
}

.banner-section{
    background-color: #FFEFF2;
    position: relative;
    z-index: 1;
    padding: 90px 0 0;
}

.banner-section .text-box h6{
    color: #eb2a79;
}

.banner-section .text-box h1{
    font-size: 70px;
}


.banner-section .text-box h1 span{
    color: #eb2a79;
}

.intro1__shape1{
    position: absolute;
    top: -16%;
    left: 0%;
    z-index: -1;
}

.intro1__shape2 {
    position: absolute;
    bottom: 0%;
    left: 0%;
    z-index: -1;
}

.intro1__shape3 {
    position: absolute;
    bottom: 15%;
    right: 0%;
    z-index: -1;
}




.banner-box{
    padding: 15px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.banner-box .text-box p{
    margin-bottom: 0;
    font-style: italic;
    margin-top: 10px;
}

.section-heading{
    margin-bottom: 30px;
}

.section-heading h6{
    font-size: 18px;
    margin-bottom: 15px;
    color: #eb2a79;
}

.section-heading h2{
    font-size: 40px;
}

.section-heading h2 span{
    color: #eb2a79;
}

.about-point-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.about-text-highlight{
    padding: 20px;
    background-color: #FFDEE5;
    border-radius: 15px;
    margin: 20px 0;
}

.tagline {
    background: #FFEFF2;
    padding-bottom: 120px;
}

.tagline-title {
    font-size: clamp(2.5rem, 50px, 5.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: #000;
    max-width: 1400px;
    margin: 0 auto;
    font-family: "Playfair Display", serif;
}

.tagline-img {
    display: inline-block;
    vertical-align: middle;
    margin: 0 12px;
}

.tagline-img img {
    width: 220px;
    height: 80px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

/* Tablet */
@media (max-width: 991px) {
    .tagline-img img {
        width: 160px;
        height: 65px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .tagline-title {
        line-height: 1.3;
    }

    .tagline-img {
        display: block;
        margin: 15px auto;
    }

    .tagline-img img {
        width: 180px;
        height: 70px;
        margin: 0 auto;
    }
}

.feature-section .feature-box{
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: #fff;
}

.feature-section .feature-box h4{
    color: #eb2a79;
}

.feature-section .feature-content{
    margin-top: -5%;
}

.benefit-section {
    background: #f8f8f8;
}

.benefit-card {
    height: 360px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

/* Image Cards */
.benefit-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-card .icon-box img{
    width: inherit;
    height: inherit;
    object-fit: inherit;
    margin-bottom: 20px;
}


.benefit-card-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.benefit-overlay {
    position: absolute;
    left: 40px;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
}

.benefit-overlay h4 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FF2D7A;
}

.benefit-overlay p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Light Cards */
.benefit-card-light {
    background: #f8ecef;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-card-light h4 {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.benefit-card-light p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    max-width: 280px;
}

/* Icons */
.benefit-icon {
    font-size: 42px;
    color: #ff2d7a;
    display: inline-block;
    margin-bottom: 20px;
}

/* Decorative Product */
.benefit-decoration {
    position: absolute;
    right: 20px;
    bottom: 20px;
    opacity: .12;
}

.benefit-decoration img {
    width: 140px;
}

/* Responsive */
@media (max-width: 991px) {
    .benefit-card {
        height: 320px;
    }

    .benefit-overlay,
    .benefit-card-light {
        padding: 30px;
    }

    .benefit-overlay h4,
    .benefit-card-light h4 {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .benefit-card {
        height: 280px;
    }

    .benefit-overlay {
        left: 25px;
        right: 25px;
    }

    .benefit-overlay h4,
    .benefit-card-light h4 {
        font-size: 22px;
    }

    .benefit-overlay p,
    .benefit-card-light p {
        font-size: 15px;
    }
}