/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #f4c2d4;
    --secondary-color: #fde7ed;
    --accent-color: #d4a5a5;
    --rose-gold: #b76e79;
    --soft-pink: #ffeef4;
    --ivory: #faf8f5;
    --beige: #f5f0e8;
    --text-dark: #4a4a4a;
    --text-light: #7a7a7a;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(212, 165, 165, 0.1);
    --shadow-md: 0 4px 20px rgba(212, 165, 165, 0.15);
    --shadow-lg: 0 8px 30px rgba(212, 165, 165, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hind Siliguri', 'Poppins', sans-serif;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--ivory) 0%, var(--beige) 100%);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Baloo Da 2', 'Playfair Display', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== LOADING SCREEN ===== */
#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--rose-gold) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeOut 0.5s ease-in-out 2.5s forwards;
}

.loading-content {
    text-align: center;
    color: var(--white);
}

.loading-logo {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite;
}

.loading-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease-in-out;
}

.loading-tagline {
    font-size: 1rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-in-out 0.3s both;
}

.loading-spinner {
    margin-top: 2rem;
}

.spinner-circle {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes glow {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 
                     0 0 40px rgba(255, 255, 255, 0.3);
    }
    50% { 
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 
                     0 0 60px rgba(255, 255, 255, 0.5);
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeOut {
    to { 
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== WELCOME POPUP ===== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: linear-gradient(135deg, var(--white) 0%, var(--soft-pink) 100%);
    padding: 3rem;
    border-radius: 30px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: var(--transition);
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.popup-close:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg);
}

.popup-inner {
    text-align: center;
}

.popup-icon {
    font-size: 3rem;
    color: var(--rose-gold);
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.popup-inner h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.popup-inner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--rose-gold);
    margin-bottom: 1rem;
}

.popup-desc {
    color: var(--text-light);
    margin: 1rem 0;
}

.popup-offer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--rose-gold) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    color: var(--white);
}

.offer-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.btn-popup-shop {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--primary-color) 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: var(--transition);
}

.btn-popup-shop:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(183, 110, 121, 0.4);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===== HEADER ===== */
#mainHeader {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon {
    font-size: 2rem;
    color: var(--rose-gold);
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    font-style: italic;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 1rem;
    position: relative;
    font-size: 1.1rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rose-gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cart-link {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--rose-gold);
    color: var(--white);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 600;
}

/* ===== CART SIDEBAR ===== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: var(--white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 10001;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--rose-gold) 100%);
    color: var(--white);
}

.cart-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.cart-close {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.cart-close:hover {
    background: var(--white);
    color: var(--rose-gold);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-light);
}

.empty-cart i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--soft-pink);
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.cart-item-price {
    color: var(--rose-gold);
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.cart-item-quantity button {
    background: var(--white);
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-quantity button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.cart-item-quantity span {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.cart-item-remove:hover {
    color: #e74c3c;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--secondary-color);
    background: var(--soft-pink);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.btn-checkout {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--primary-color) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(183, 110, 121, 0.4);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(244, 194, 212, 0.3) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    z-index: 1;
}

.hero-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--rose-gold) 100%);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-in-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-in-out 0.2s both;
}

.gradient-text {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-in-out 0.4s both;
}

.hero-trust {
    font-size: 1rem;
    color: var(--rose-gold);
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-in-out 0.6s both;
}

.hero-trust i {
    margin-right: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-in-out 0.8s both;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(183, 110, 121, 0.4);
    color: var(--white);
}

.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--rose-gold);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--rose-gold);
    transition: var(--transition);
}

.btn-secondary-custom:hover {
    background: var(--rose-gold);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-image {
    z-index: 1;
}

.floating-card {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.hero-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
}

.hero-badge i {
    color: #27ae60;
    font-size: 1.2rem;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 194, 212, 0.4) 0%, transparent 70%);
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
    animation: float 8s ease-in-out infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    animation: float 10s ease-in-out infinite reverse;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-in-out forwards;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--rose-gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-light);
    font-size: 1.1rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-details {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--rose-gold);
    margin-bottom: 1rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-add-cart, .btn-buy-now {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-cart {
    background: var(--soft-pink);
    color: var(--rose-gold);
}

.btn-add-cart:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-buy-now {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--primary-color) 100%);
    color: var(--white);
}

.btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(183, 110, 121, 0.4);
}

/* ===== WHY CHOOSE US ===== */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--white) 100%);
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--rose-gold) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--white);
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: 100px 0;
    background: var(--white);
}

.review-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--soft-pink) 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.review-header h5 {
    margin: 0;
    font-size: 1.1rem;
}

.review-stars {
    color: #f39c12;
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--white) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(183, 110, 121, 0.8) 0%, rgba(244, 194, 212, 0.8) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--white);
}

/* ===== FOOTER ===== */
.footer-section {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-brand i {
    font-size: 2.5rem;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0;
}

.footer-brand p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-description {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-contact i {
    width: 30px;
}

.footer-contact a {
    color: var(--white);
    opacity: 0.9;
}

.footer-contact a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--white);
    color: var(--rose-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

/* ===== PRODUCT DETAILS PAGE ===== */
.product-details-page {
    min-height: 100vh;
    background: var(--white);
    padding-top: 100px;
}

.btn-back {
    background: var(--soft-pink);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: var(--rose-gold);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-back:hover {
    background: var(--primary-color);
    color: var(--white);
}

.product-image-gallery {
    position: sticky;
    top: 120px;
}

.main-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.main-image img {
    width: 100%;
    height: auto;
}

.product-info {
    background: linear-gradient(135deg, var(--white) 0%, var(--soft-pink) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.product-detail-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-rating {
    color: #f39c12;
    margin-bottom: 1.5rem;
}

.product-rating span {
    color: var(--text-light);
    margin-left: 0.5rem;
}

.product-price-detail {
    margin-bottom: 1.5rem;
}

.product-price-detail .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--rose-gold);
}

.product-description-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-features {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item i {
    color: #27ae60;
    font-size: 1.2rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantity-selector label {
    font-weight: 600;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 50px;
}

.quantity-controls button {
    width: 35px;
    height: 35px;
    border: none;
    background: var(--soft-pink);
    color: var(--rose-gold);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-controls button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.quantity-controls input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 1.1rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.btn-add-to-cart, .btn-buy-now {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-to-cart {
    background: var(--white);
    color: var(--rose-gold);
    border: 2px solid var(--rose-gold);
}

.btn-add-to-cart:hover {
    background: var(--rose-gold);
    color: var(--white);
}

.btn-buy-now {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--primary-color) 100%);
    color: var(--white);
}

.btn-buy-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(183, 110, 121, 0.4);
}

/* ===== CHECKOUT PAGE ===== */
.checkout-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--ivory) 0%, var(--soft-pink) 100%);
    padding-top: 100px;
}

.checkout-header {
    margin-bottom: 2rem;
}

.checkout-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-dark);
}

.checkout-form-card, .order-summary-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.checkout-form-card h3, .order-summary-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    padding: 0.8rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--rose-gold);
    box-shadow: 0 0 0 0.2rem rgba(183, 110, 121, 0.25);
}

.payment-method {
    margin-top: 2rem;
}

.payment-method h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.payment-option {
    background: var(--soft-pink);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.payment-option.selected {
    border-color: var(--rose-gold);
    background: rgba(183, 110, 121, 0.1);
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.payment-option i {
    font-size: 1.5rem;
    color: var(--rose-gold);
}

.payment-option input {
    margin-right: 0.5rem;
}

.order-items {
    margin-bottom: 1.5rem;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--soft-pink);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.order-item img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.order-item-info {
    flex: 1;
}

.order-item-name {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.order-item-qty {
    color: var(--text-light);
    font-size: 0.9rem;
}

.order-item-price {
    font-weight: 700;
    color: var(--rose-gold);
}

.order-calculation {
    border-top: 2px solid var(--secondary-color);
    padding-top: 1.5rem;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.calc-row.total {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--rose-gold);
    border-top: 2px solid var(--secondary-color);
    padding-top: 1rem;
}

.btn-confirm-order {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--primary-color) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-confirm-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(183, 110, 121, 0.4);
}

/* ===== ORDER SUCCESS PAGE ===== */
.order-success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--rose-gold) 100%);
    padding: 2rem;
}

.success-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    max-width: 600px;
    box-shadow: var(--shadow-lg);
}

.success-animation {
    margin-bottom: 2rem;
}

.success-checkmark {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: scaleIn 0.5s ease-in-out;
}

.success-checkmark i {
    font-size: 3rem;
    color: var(--white);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.success-message {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.order-summary-success {
    background: var(--soft-pink);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: left;
}

.success-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-call, .btn-whatsapp {
    flex: 1;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-call {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--primary-color) 100%);
    color: var(--white);
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(183, 110, 121, 0.4);
    color: var(--white);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    color: var(--white);
}

.btn-continue-shopping {
    background: var(--white);
    color: var(--rose-gold);
    border: 2px solid var(--rose-gold);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-continue-shopping:hover {
    background: var(--rose-gold);
    color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .product-detail-name {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .product-actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 80px 0 30px;
    }
    
    .loading-brand {
        font-size: 1.5rem;
    }
    
    .popup-content {
        padding: 2rem;
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    .brand-tagline {
        font-size: 0.65rem;
    }
}

/* ===== SMOOTH SCROLL ===== */
html {
    scroll-behavior: smooth;
}

/* ===== SELECTION ===== */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--soft-pink);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--primary-color) 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--rose-gold);
}