/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a1a;
    --secondary: #ff6b9d;
    --accent: #ffc2d1;
    --gold: #d4af37;
    --rose-gold: #e8a4b8;
    --white: #ffffff;
    --cream: #fefefe;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    --success: #4caf50;
    --whatsapp: #25d366;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

/* Buttons - Clean Extenify Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
}

.btn-primary:hover {
    background: #ff5a8f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}

.btn-secondary:hover {
    background: var(--white);
    border-color: var(--gray-300);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-sms {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--rose-gold) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 165, 212, 0.3);
}

.btn-sms:hover {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--secondary) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(183, 110, 121, 0.4);
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

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

.logo-icon {
    font-size: 1.75rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    display: none;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gray-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 480px) {
    .logo-text {
        display: inline;
    }
}

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition-bounce);
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
}

.cart-btn:hover {
    background: var(--white);
    border-color: var(--secondary);
    transform: scale(1.08) rotate(3deg);
    box-shadow: var(--shadow);
}

.cart-btn:active {
    transform: scale(0.95);
}

.cart-count {
    position: absolute;
    top: -0.35rem;
    right: -0.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 1.35rem;
    height: 1.35rem;
    padding: 0 0.4rem;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--secondary) 100%);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: 9999px;
    box-shadow: 0 2px 8px rgba(183, 110, 121, 0.4);
    animation: pulse 2s infinite;
}

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

/* Hero Section */
.hero {
    padding: 6rem 0 7rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 165, 212, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 180, 184, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

.hero-content {
    max-width: 640px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 400;
}

/* Products Section */
.products-section {
    padding: 7rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.125rem;
    font-weight: 400;
}

.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--rose-gold));
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

/* Product Card - Clean Extenify Style */
.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-image img[src*="images/"]:error,
.product-image img:not([src]) {
    display: none;
}

.product-image::before {
    content: attr(data-product);
    position: absolute;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 0;
}

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

.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.375rem 0.75rem;
    background: var(--secondary);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border-radius: 4px;
}

.product-info {
    padding: 1rem;
}

.product-name {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.product-price::before {
    content: '$';
    font-size: 0.75rem;
    vertical-align: top;
    margin-right: 0.1rem;
}

.add-to-cart {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.add-to-cart:hover {
    background: var(--gray-800);
    transform: translateY(-1px);
}

.add-to-cart:active {
    transform: scale(0.98);
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(4px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 440px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 201;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-premium);
}

.cart-sidebar.active {
    transform: translateX(0);
}

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

.cart-header h3 {
    font-size: 1.25rem;
    color: var(--primary);
}

.close-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-600);
}

.close-cart:hover {
    background: var(--gray-200);
    color: var(--gray-800);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 2rem;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.cart-empty p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.cart-empty span {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: var(--transition);
}

.cart-item:hover {
    background: var(--gray-100);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--gray-200);
}

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

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-700);
    font-weight: 600;
}

.qty-btn:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
}

.qty-value {
    min-width: 2rem;
    text-align: center;
    font-weight: 600;
    color: var(--gray-800);
}

.remove-item {
    padding: 0.375rem 0.75rem;
    background: transparent;
    border: none;
    color: var(--gray-500);
    font-size: 0.8125rem;
    cursor: pointer;
    transition: var(--transition);
}

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

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.cart-subtotal span:first-child {
    color: var(--gray-600);
}

#cartTotal {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.25rem;
}

.cart-footer .btn {
    margin-bottom: 0.75rem;
}

.cart-footer .btn:last-child {
    margin-bottom: 0;
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(8px);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.modal-header h3 {
    font-size: 1.25rem;
    color: var(--primary);
}

.close-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-600);
}

.close-modal:hover {
    background: var(--gray-200);
    color: var(--gray-800);
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    max-height: calc(90vh - 80px);
}

.order-summary {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.order-summary h4 {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.order-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9375rem;
}

.order-item-name {
    color: var(--gray-700);
}

.order-item-price {
    font-weight: 600;
    color: var(--gray-800);
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

.order-note {
    display: flex;
    gap: 0.875rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(255, 251, 235, 0.9) 0%, rgba(254, 243, 199, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.order-note svg {
    flex-shrink: 0;
    color: #d97706;
}

.order-note p {
    font-size: 0.875rem;
    color: #92400e;
    line-height: 1.5;
}

.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Footer - Clean Style */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.footer-brand p {
    line-height: 1.6;
    max-width: 300px;
    font-size: 0.875rem;
}

.footer-column h4 {
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.375rem;
}

.footer-column a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--secondary);
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-800);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--gray-600);
}

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

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

.product-card {
    animation: fadeIn 0.6s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }

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

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

/* Selection */
::selection {
    background: var(--secondary);
    color: var(--white);
}

/* ============================================
   EXTRAORDINARY PREMIUM ADDITIONS
   ============================================ */

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--secondary) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button Glow Effect */
.btn-glow {
    position: relative;
    box-shadow: 0 0 20px rgba(212, 165, 212, 0.4), 0 0 40px rgba(183, 110, 121, 0.2);
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--secondary), var(--rose-gold), var(--gold));
    border-radius: calc(var(--radius) + 2px);
    z-index: -1;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.4s ease;
}

.btn-glow:hover::after {
    opacity: 0.6;
}

/* Text Button */
.btn-text {
    background: transparent;
    color: var(--gray-700);
    padding: 0.75rem 1rem;
    font-weight: 500;
}

.btn-text:hover {
    color: var(--rose-gold);
    transform: translateX(4px);
}

.btn-text .arrow {
    transition: transform 0.3s ease;
}

.btn-text:hover .arrow {
    transform: translateX(4px);
}

/* Floating Shapes */
.floating-shapes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary), transparent);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--rose-gold), transparent);
    top: 40%;
    right: -5%;
    animation-delay: -5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--gold), transparent);
    bottom: 20%;
    left: 10%;
    animation-delay: -10s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--accent), transparent);
    bottom: -10%;
    right: 20%;
    animation-delay: -15s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(50px, -30px) scale(1.1) rotate(5deg);
    }
    50% {
        transform: translate(30px, 30px) scale(0.9) rotate(-5deg);
    }
    75% {
        transform: translate(-30px, 20px) scale(1.05) rotate(3deg);
    }
}

/* Hero Section Enhanced */
.hero {
    position: relative;
    padding: 8rem 0 6rem;
    overflow: visible;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 165, 212, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--rose-gold);
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
    animation: slideIn 0.6s ease 0.2s both;
}

.badge-icon {
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(10deg); }
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    animation: fadeIn 0.8s ease 0.4s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--gray-600);
    font-weight: 500;
}

.feature-check {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary), var(--rose-gold));
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    transform-style: preserve-3d;
    animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {
    0%, 100% { transform: translateY(0) rotateY(-5deg); }
    50% { transform: translateY(-20px) rotateY(5deg); }
}

.hero-ring {
    position: absolute;
    inset: -30px;
    border: 2px solid rgba(212, 165, 212, 0.3);
    border-radius: 50%;
    animation: rotateRing 20s linear infinite;
}

.hero-ring-2 {
    inset: -60px;
    border-color: rgba(183, 110, 121, 0.2);
    animation-direction: reverse;
    animation-duration: 25s;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    transform: rotateY(-5deg);
    transition: transform 0.6s ease;
}

.hero-image:hover {
    transform: rotateY(0deg) scale(1.02);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Floating Tags */
.floating-tag {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.05);
    animation: floatTag 4s ease-in-out infinite;
}

.tag-1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.tag-2 {
    bottom: 25%;
    left: -30px;
    animation-delay: -2s;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--rose-gold);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

.dot-gold {
    background: var(--gold);
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

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

/* Trust Section */
.trust-section {
    padding: 3rem 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    position: relative;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 4rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-600);
    transition: var(--transition);
}

.trust-item:hover {
    color: var(--rose-gold);
    transform: translateY(-2px);
}

.trust-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
    border-radius: var(--radius);
    color: var(--rose-gold);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.trust-item:hover .trust-icon {
    background: linear-gradient(135deg, var(--rose-gold), var(--secondary));
    color: white;
    transform: scale(1.1);
}

.trust-text {
    font-size: 0.9375rem;
    font-weight: 500;
}

/* Section Tag */
.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(212, 165, 212, 0.15), rgba(183, 110, 121, 0.1));
    color: var(--rose-gold);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

/* Section Glow */
.section-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 212, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 50%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    position: relative;
    padding: 2.5rem;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition-bounce);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--rose-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-highlight {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    border: 1px solid rgba(212, 165, 212, 0.2);
}

.feature-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 165, 212, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary), var(--rose-gold));
    border-radius: var(--radius);
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(183, 110, 121, 0.3);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.feature-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.7s ease;
}

.feature-card:hover .feature-shine {
    left: 100%;
}

/* Newsletter Section */
.newsletter-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gray-800) 100%);
    overflow: hidden;
}

.newsletter-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 165, 212, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: floatDiamond 3s ease-in-out infinite;
}

@keyframes floatDiamond {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.newsletter-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-section p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

.newsletter-form {
    max-width: 450px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 0.75rem;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.input-group input {
    flex: 1;
    padding: 0.875rem 1rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 0.9375rem;
    outline: none;
}

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

.input-group .btn {
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary), var(--rose-gold));
    box-shadow: 0 4px 20px rgba(183, 110, 121, 0.4);
}

.newsletter-note {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    margin-top: 1rem;
}

/* Enhanced Footer */
.footer-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 165, 212, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-logo .logo-text {
    background: linear-gradient(135deg, white 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: rgba(255,255,255,0.6);
    margin-top: 1rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    color: rgba(255,255,255,0.6);
    transition: var(--transition-bounce);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--secondary), var(--rose-gold));
    border-color: transparent;
    color: white;
    transform: translateY(-3px) scale(1.1);
}

.payment-methods {
    display: flex;
    gap: 0.75rem;
}

.payment-icon {
    font-size: 1.5rem;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.payment-icon:hover {
    opacity: 1;
}

.copyright {
    color: rgba(255,255,255,0.4);
}

/* ============================================
   ADDITIONAL FEATURES CSS
   ============================================ */

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--secondary), var(--rose-gold));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(183, 110, 121, 0.5);
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-text {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.9);
}

.cookie-text a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-btn {
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary), var(--rose-gold));
    border: none;
    border-radius: var(--radius);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-btn:hover {
    transform: scale(1.05);
}

/* Search Bar */
.search-container {
    position: relative;
    margin-left: 1.5rem;
}

.search-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--gray-700);
    transition: var(--transition);
}

.search-toggle:hover {
    color: var(--rose-gold);
}

.search-box {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.search-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    outline: none;
}

.search-input:focus {
    border-color: var(--secondary);
}

.search-results {
    margin-top: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius);
}

.search-result-item:hover {
    background: var(--gray-50);
}

.search-result-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
}

/* Newsletter Popup */
.newsletter-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.newsletter-popup.show {
    opacity: 1;
    visibility: visible;
}

.newsletter-popup-content {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.newsletter-popup.show .newsletter-popup-content {
    transform: scale(1);
}

.newsletter-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--gray-600);
    transition: var(--transition);
}

.newsletter-popup-close:hover {
    background: var(--gray-200);
    color: var(--gray-800);
}

.newsletter-popup h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.newsletter-popup p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.newsletter-popup-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* FAQ Accordion */
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-200);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--rose-gold);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1rem 0;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.category-tab {
    padding: 0.625rem 1.25rem;
    background: transparent;
    border: 1px solid var(--gray-200);
    border-radius: 9999px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.category-tab:hover {
    border-color: var(--secondary);
    color: var(--rose-gold);
}

.category-tab.active {
    background: linear-gradient(135deg, var(--secondary), var(--rose-gold));
    border-color: transparent;
    color: white;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--rose-gold));
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--rose-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--gray-700);
}

/* Sticky Add to Cart (Mobile) */
.sticky-add-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-add-cart.visible {
    transform: translateY(0);
}

/* Legal Pages */
.legal-page .legal-content {
    padding: 4rem 0;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary);
}

.legal-text h3 {
    font-size: 1.125rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--gray-800);
}

.legal-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.legal-text ul,
.legal-text ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.shipping-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.shipping-table th,
.shipping-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.shipping-table th {
    font-weight: 600;
    color: var(--gray-800);
    background: var(--gray-50);
}

/* Mobile Responsive for New Features */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .search-container {
        display: none;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .category-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }
}

/* 3D Product Card Enhancement */
.product-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.product-card:hover {
    transform: translateY(-12px) rotateX(5deg);
}

/* Scroll Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Glow Effect for Cart Count */
.cart-count {
    animation: pulseGlowBadge 2s ease-in-out infinite;
}

@keyframes pulseGlowBadge {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(183, 110, 121, 0.4);
    }
    50% {
        box-shadow: 0 2px 20px rgba(183, 110, 121, 0.6), 0 0 30px rgba(212, 165, 212, 0.3);
    }
}

/* Add to Cart Enhanced */
.add-to-cart {
    position: relative;
    overflow: hidden;
}

.add-to-cart::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.add-to-cart:hover::after {
    transform: translateX(100%);
}

/* Enhanced Modal */
.modal {
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,255,255,0.95));
}

/* Custom Cursor Effect on Interactive Elements */
@media (hover: hover) and (pointer: fine) {
    .btn, .product-card, .cart-btn, .social-link, .trust-item {
        cursor: pointer;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero {
        padding: 5rem 0 4rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .floating-tag {
        display: none;
    }
    
    .trust-badges {
        gap: 1.5rem;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .shape {
        display: none;
    }
}

/* ============================================
   PRODUCTS PAGE SPECIFIC STYLES
   ============================================ */

/* Page Header */
.page-header {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--cream) 100%);
    text-align: center;
    overflow: hidden;
}

.page-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 212, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--rose-gold);
}

.breadcrumb span:last-child {
    color: var(--gray-700);
    font-weight: 500;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto;
}

/* Products Page Layout */
.products-page .products-section {
    padding-top: 3rem;
}

.products-full {
    min-height: 60vh;
}

/* Products Toolbar - Clean Extenify Style */
.products-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.products-count {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

.products-filter {
    display: flex;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    color: var(--secondary);
}

.filter-btn.active {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
    font-weight: 600;
}

/* Full Products Grid */
.products-grid-full {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
    .products-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid-full {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .products-grid-full {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Products Grid on Homepage (when present) */
.products-grid {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Features Banner - Clean Style */
.features-banner {
    padding: 2rem 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    margin-top: 4rem;
}

.features-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 4rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
}

.feature-icon-small {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border-radius: 50%;
    font-size: 0.625rem;
    color: white;
    font-weight: 700;
}
