:root {
  --primary: #C6A15B;
  --secondary: #267C6E;
  --light-bg: #F8F9FA;
  --dark-text: #2C3E50;
  --light-text: #6C757D;
}

body {
  font-family: 'Raleway', sans-serif;
  color: var(--dark-text);
}

/* Navbar Styles */
.navbar {
  background-color: var(--light-bg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
  padding: 0.5rem 0;
}

.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary), #d4b474, var(--primary));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.navbar-brand::after {
  content: '💎';
  position: absolute;
  top: -5px;
  right: -10px;
  font-size: 0.8rem;
  opacity: 0;
  transition: all 0.3s ease;
  animation: diamondSparkle 3s ease-in-out infinite;
}

.navbar-brand:hover::after {
  opacity: 1;
  transform: scale(1.2);
}

@keyframes diamondSparkle {
  0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

.navbar-brand:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 2px 4px rgba(198, 161, 91, 0.3));
  text-shadow: 0 0 10px rgba(244, 208, 63, 0.5);
}

.nav-link {
  font-family: 'Montserrat Alternates', sans-serif;
  color: var(--dark-text) !important;
  font-size: 0.95rem;
  font-weight: 400;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary) !important;
}

.cart-icon {
  color: var(--primary);
  font-size: 1.2rem;
  padding: 0.5rem;
  transition: transform 0.2s ease;
}

.cart-icon:hover {
  transform: scale(1.1);
}

.breadcrumb {
  margin-top: 1rem;
  font-size: 0.9rem;
  background-color: transparent;
}

/* Search Bar Styles */
.form-control {
  border-radius: 20px 0 0 20px;
  border: 1px solid #ced4da;
  padding: 0.5rem 1rem;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(198, 161, 91, 0.25);
}

.btn-outline-primary {
  border-radius: 0 20px 20px 0;
  border: 1px solid #ced4da;
  border-left: none;
  color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* Footer Styles */
.footer-section {
  background-color: var(--light-bg);
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-heading {
  font-family: 'Cormorant Garamond', serif;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-text {
  color: var(--light-text);
  line-height: 1.6;
}

.contact-info {
  color: var(--light-text);
}

.contact-icon {
  color: var(--primary);
}

/* Product Page Styles */
.product-title {
  font-family: 'Cormorant Garamond', serif;
  color: var(--dark-text);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.product-image-container {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

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

.price-container {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 500;
}

.product-description {
  line-height: 1.8;
  color: var(--dark-text);
}

.product-features {
  background: var(--light-bg);
  padding: 1.5rem;
  border-radius: 8px;
}

.product-features h4 {
  color: var(--primary);
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 1rem;
}

.product-features ul {
  list-style: none;
  padding-left: 0;
}

.product-features li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.product-features li:before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
}
/* Contact Page Styles */
.contact-info-card {
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid var(--primary);
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-form-section .card {
    background: linear-gradient(to right, #ffffff 0%, #f8f9fa 100%);
    border: none;
    border-radius: 15px;
}

.contact-form-section .form-control,
.contact-form-section .form-select {
    border-radius: 10px;
    border: 1px solid #ced4da;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(198, 161, 91, 0.25);
}

.contact-form-section .btn-primary {
    background: linear-gradient(45deg, var(--primary) 0%, #d4b474 100%);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-form-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(198, 161, 91, 0.3);
}

.faq-section .accordion-button {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    padding: 1rem 1.25rem;
    font-weight: 500;
    color: var(--dark-text);
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.faq-section .accordion-body {
    padding: 1.25rem;
    color: var(--light-text);
    line-height: 1.6;
}

/* Glamorous Fixed navbar styles */
.navbar.fixed-top {
    z-index: 1030;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(248, 249, 250, 0.95) 50%, 
        rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 4px 20px rgba(198, 161, 91, 0.15), 
                0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar.fixed-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary) 15%, 
        #f4d03f 25%, 
        var(--primary) 35%, 
        #d4b474 50%, 
        var(--primary) 65%, 
        #f4d03f 75%, 
        var(--primary) 85%, 
        transparent 100%);
    animation: shimmer 2.5s ease-in-out infinite;
}

.navbar.fixed-top::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(244, 208, 63, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(198, 161, 91, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(212, 180, 116, 0.1) 0%, transparent 50%);
    animation: sparkleBackground 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { 
        opacity: 0.4; 
        transform: translateX(-100%);
    }
    50% { 
        opacity: 1; 
        transform: translateX(100%);
    }
}

@keyframes sparkleBackground {
    0%, 100% { opacity: 0.3; }
    25% { opacity: 0.6; }
    50% { opacity: 0.4; }
    75% { opacity: 0.7; }
}

/* Glamorous Menu alignment styles */
.navbar-nav.w-100 {
    flex: 1;
    justify-content: space-between;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.navbar-nav .nav-item {
    flex: 1;
    text-align: center;
    position: relative;
    margin: 0 0.2rem;
}

.navbar-nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--dark-text) !important;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    padding: 0.3rem 0.5rem !important;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(244, 208, 63, 0.2), 
        rgba(198, 161, 91, 0.3), 
        rgba(212, 180, 116, 0.2), 
        transparent);
    transition: left 0.8s ease;
    box-shadow: 0 0 10px rgba(244, 208, 63, 0.3);
}

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

.navbar-nav .nav-item::before {
    content: '✨';
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    opacity: 0;
    transition: all 0.3s ease;
    animation: twinkle 2s ease-in-out infinite;
}

.navbar-nav .nav-item:hover::before {
    opacity: 1;
    left: -15px;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: translateY(-50%) scale(0.8); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.2); }
}

.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(198, 161, 91, 0.3);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), #d4b474);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Glamorous Cart icon styles */
.cart-icon {
    position: relative;
    background: linear-gradient(135deg, var(--primary), #d4b474, #f4d03f);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(198, 161, 91, 0.4), 
                0 0 0 0 rgba(198, 161, 91, 0.3);
    animation: cartGlow 3s ease-in-out infinite;
}

@keyframes cartGlow {
    0%, 100% { 
        box-shadow: 0 6px 20px rgba(198, 161, 91, 0.4), 
                    0 0 0 0 rgba(198, 161, 91, 0.3);
    }
    50% { 
        box-shadow: 0 8px 25px rgba(198, 161, 91, 0.6), 
                    0 0 20px rgba(198, 161, 91, 0.4);
    }
}

.cart-icon::before {
    content: '🛍️';
    position: absolute;
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.cart-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 30px rgba(198, 161, 91, 0.5), 
                0 0 30px rgba(198, 161, 91, 0.6);
    background: linear-gradient(135deg, #f4d03f, #d4b474, var(--primary));
    border-color: rgba(255, 255, 255, 1);
}

.cart-icon .snipcart-items-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: countPulse 1.5s ease-in-out infinite;
}

/* Currency display for cart */
.cart-currency {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), #d4b474);
    color: white;
    padding: 0.2rem 0.4rem;
    border-radius: 8px;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(198, 161, 91, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.8);
    z-index: 10;
    animation: badgePulse 2s ease-in-out infinite;
}

/* Snipcart currency override styles */
.snipcart-total-price,
.snipcart-item-price,
.snipcart-item-total,
.snipcart-summary-total,
.snipcart-summary-subtotal,
.snipcart-summary-tax,
.snipcart-summary-shipping {
    font-weight: 600;
}

/* Ensure currency symbols are properly styled */
.snipcart-total-price::before,
.snipcart-item-price::before,
.snipcart-item-total::before,
.snipcart-summary-total::before,
.snipcart-summary-subtotal::before,
.snipcart-summary-tax::before,
.snipcart-summary-shipping::before {
    content: '';
    display: none;
}

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

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

/* Glamorous Search Form */
.navbar .input-group {
    position: relative;
}

.navbar .form-control {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary), #d4b474) border-box;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(198, 161, 91, 0.1);
}

.navbar .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(198, 161, 91, 0.2);
    transform: translateY(-1px);
}

.navbar .btn-outline-primary {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, var(--primary), #d4b474);
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.navbar .btn-outline-primary::before {
    content: '🔍';
    position: absolute;
    font-size: 1rem;
    animation: searchSparkle 2s ease-in-out infinite;
}

@keyframes searchSparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.navbar .btn-outline-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(198, 161, 91, 0.3), 
                0 0 15px rgba(244, 208, 63, 0.4);
    background: linear-gradient(135deg, #d4b474, var(--primary));
}

/* Glamorous Mobile Menu */
.navbar-toggler {
    border: 2px solid var(--primary);
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(198, 161, 91, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28198, 161, 91, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-nav.w-100 {
        flex-direction: column;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 15px;
        padding: 1rem;
        margin-top: 1rem;
        box-shadow: 0 8px 30px rgba(198, 161, 91, 0.15);
    }
    
    .navbar-nav .nav-item {
        flex: none;
        text-align: left;
        margin: 0.25rem 0;
    }
    
    .navbar-nav .nav-link {
        justify-content: flex-start;
        min-height: auto;
        padding: 0.5rem 0.75rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }
    
    .navbar-nav .nav-link:hover {
        background: linear-gradient(135deg, rgba(198, 161, 91, 0.1), rgba(212, 180, 116, 0.1));
        transform: translateX(5px);
    }
    
    .navbar-brand {
        font-size: 1.8rem;
    }
}

/* Glamorous Carousel Styles */
.hero-section .carousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(198, 161, 91, 0.2), 
                0 0 0 1px rgba(198, 161, 91, 0.1);
    position: relative;
}

.hero-section .carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(198, 161, 91, 0.1) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(212, 180, 116, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-section .carousel-item {
    height: 400px !important;
    position: relative;
    overflow: hidden;
}

.hero-section .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.9) contrast(1.1);
}

.hero-section .carousel-item:hover img {
    transform: scale(1.05);
}

.hero-section .carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgb(123 123 123 / 85%));
    padding: 3rem 2rem 2rem;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.hero-section .carousel-caption h1,
.hero-section .carousel-caption h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: white !important;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8), 
                 0 0 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-section .carousel-caption .lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
}

.hero-section .carousel-caption .btn {
    background: linear-gradient(135deg, var(--primary), #d4b474);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(198, 161, 91, 0.3);
}

.hero-section .carousel-caption .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 161, 91, 0.4);
    background: linear-gradient(135deg, #d4b474, var(--primary));
}

/* Glamorous Carousel Controls */
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(198, 161, 91, 0.8), rgba(212, 180, 116, 0.8));
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    z-index: 3;
}

.hero-section .carousel-control-prev {
    left: 20px;
}

.hero-section .carousel-control-next {
    right: 20px;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
    background: linear-gradient(135deg, var(--primary), #d4b474);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(198, 161, 91, 0.4);
}

.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Hide Carousel Indicators */
.hero-section .carousel-indicators {
    display: none !important;
}

/* Badge Styles for Carousel */
.hero-section .badge {
    background: linear-gradient(135deg, var(--primary), #d4b474);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(198, 161, 91, 0.3);
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 2px 8px rgba(198, 161, 91, 0.3); }
    50% { box-shadow: 0 4px 15px rgba(198, 161, 91, 0.5); }
}

.hero-section .badge.bg-danger {
    background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
}

.hero-section .badge.bg-warning {
    background: linear-gradient(135deg, #f39c12, #e67e22) !important;
}

.hero-section .badge.bg-secondary {
    background: linear-gradient(135deg, var(--secondary), #2a8b7d) !important;
}

/* Modern Product Cards */
.card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 8px 30px rgba(198, 161, 91, 0.1), 
                0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(198, 161, 91, 0.02) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(212, 180, 116, 0.02) 100%);
    pointer-events: none;
    z-index: 1;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(198, 161, 91, 0.2), 
                0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.card:hover .card-img-top {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.05);
}

.card-body {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.card-title a {
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: var(--primary);
    text-shadow: 0 2px 4px rgba(198, 161, 91, 0.2);
}

.card-text {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    min-height: 3rem;
}

/* Modern Price Display */
.price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), #d4b474);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(198, 161, 91, 0.2);
}

/* Modern Add to Cart Button */
.snipcart-add-item {
    background: linear-gradient(135deg, var(--primary), #d4b474);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(198, 161, 91, 0.3);
    position: relative;
    overflow: hidden;
}

.snipcart-add-item::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.6s ease;
}

.snipcart-add-item:hover::before {
    left: 100%;
}

.snipcart-add-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(198, 161, 91, 0.4);
    background: linear-gradient(135deg, #d4b474, var(--primary));
}

/* Product Card Badges */
.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--secondary), #2a8b7d);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: badgePulse 2s ease-in-out infinite;
}

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

/* Category Cards */
.category-card {
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 8px 30px rgba(198, 161, 91, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(198, 161, 91, 0.2);
}

.category-card img {
    height: 300px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.category-card:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.category-overlay {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0.1) 100%);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.category-card:hover .category-overlay {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(0, 0, 0, 0.5) 100%);
}

.category-overlay h2,
.category-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 2rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
}

.category-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.5;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 1.5rem;
}

.category-overlay .btn {
    background: linear-gradient(135deg, var(--primary), #d4b474);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(198, 161, 91, 0.3);
}

.category-overlay .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 161, 91, 0.4);
    background: linear-gradient(135deg, #d4b474, var(--primary));
}

/* Responsive Card Adjustments */
@media (max-width: 768px) {
    .card {
        margin-bottom: 1.5rem;
    }
    
    .card-img-top {
        height: 200px;
    }
    
    .card-body {
        padding: 1.25rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .category-card img {
        height: 250px;
    }
    
    .category-overlay h2,
    .category-overlay h3 {
        font-size: 1.5rem;
    }
}

/* Modern About Section Styles */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(198, 161, 91, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 180, 116, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(198, 161, 91, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Section Header */
.section-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.badge-text {
    background: linear-gradient(135deg, var(--primary), #d4b474);
    color: white;
    padding: 0.6rem 2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 6px 20px rgba(198, 161, 91, 0.4);
    animation: badgeGlow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.badge-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.1;
    position: relative;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #d4b474, var(--primary));
    border-radius: 2px;
    animation: gradientShift 3s ease-in-out infinite;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 0;
}

/* Story Highlight */
.story-highlight {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(198, 161, 91, 0.1);
    border: 1px solid rgba(198, 161, 91, 0.1);
    position: relative;
    overflow: hidden;
}

.story-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #d4b474, var(--secondary));
}

.story-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
    position: relative;
}

.story-text {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.7;
    margin: 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(198, 161, 91, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(198, 161, 91, 0.1);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #d4b474);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(198, 161, 91, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.value-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #d4b474);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(198, 161, 91, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.value-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.value-content p {
    font-size: 0.95rem;
    color: var(--light-text);
    margin: 0;
    line-height: 1.5;
}

/* About Actions */
.about-actions {
    margin-top: 2.5rem;
    text-align: center;
}

.about-actions .btn {
    border-radius: 30px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(198, 161, 91, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.about-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary), #d4b474);
    border: none;
    color: white;
}

.about-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(198, 161, 91, 0.4);
    background: linear-gradient(135deg, #d4b474, var(--primary));
}

.about-actions .btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.about-actions .btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--primary), #d4b474);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* About Visual - New Layout */
.about-visual {
    position: relative;
    padding: 2rem 0;
}

.image-gallery {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 100%;
}

.gallery-main {
    width: 100%;
    display: flex;
    justify-content: center;
}

.main-product {
    position: relative;
    width: 80%;
    max-width: 400px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(198, 161, 91, 0.2);
    transition: all 0.4s ease;
    background: white;
    padding: 1rem;
}

.main-product:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(198, 161, 91, 0.3);
}

.main-product img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s ease;
}

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

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.product-badge span {
    background: linear-gradient(135deg, var(--secondary), #2a8b7d);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: badgePulse 2s ease-in-out infinite;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(198, 161, 91, 0.15);
    transition: all 0.3s ease;
    background: white;
    padding: 0.8rem;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(198, 161, 91, 0.25);
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, rgba(198, 161, 91, 0.1), rgba(212, 180, 116, 0.1));
    padding: 3rem 2rem;
    border-radius: 25px;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(198, 161, 91, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(212, 180, 116, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(198, 161, 91, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(198, 161, 91, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #d4b474);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(198, 161, 91, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary), #d4b474);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive About Section */
@media (max-width: 991.98px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .image-gallery {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .main-product {
        width: 90%;
        max-width: 350px;
    }
    
    .gallery-grid {
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .stats-section {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    .story-highlight {
        padding: 1.5rem;
    }
    
    .value-item {
        padding: 1rem;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .image-gallery {
        gap: 1rem;
    }
    
    .main-product {
        width: 100%;
        max-width: 300px;
        padding: 0.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item {
        padding: 0.6rem;
    }
    
    .about-visual {
        padding: 1rem 0;
    }
}
