

/* ===== COMPLETE styles.css - Copy/Paste Entire File ===== */

/* Global Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; height: 100%; }
body { 
    font-family: 'Source Sans Pro', sans-serif; 
    line-height: 1.6; 
    color: #2a2a2a; 
    background: radial-gradient(circle at center, #FFF9E6 0%, #E8D4B8 50%, #C9A876 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Luxury Color Palette */
:root {
    --maroon: #4A0E0E;
    --dark-maroon: #2D0A0A;
    --gold: #D4AF37;
    --dark-gold: #AA8C2C;
    --cork: #9B8B7D;
    --light-cork: #B5A598;
    --cream: #FFF5E6;
    --warm-bg: #F5E6D3;
    --warm-light: #FFF9F0;
    --luxury-champagne: #F0E5D8;
    --luxury-gold: #B58921;
}

/* Typography */
.headline-playfair { font-family: 'Playfair Display', serif; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ===== HEADER ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    background: linear-gradient(135deg, var(--maroon) 0%, var(--dark-maroon) 100%); z-index: 100;
    border-bottom: 3px solid var(--luxury-gold);
    height: 70px; display: flex; align-items: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

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

.logo {
    font-size: 1.6rem; font-weight: bold; color: var(--luxury-gold);
    text-decoration: none; white-space: nowrap;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu { display: flex; gap: 30px; justify-content: center; flex: 1; }

.nav-link {
    color: #FFE8D6; text-decoration: none; font-weight: 600;
    transition: all 0.3s ease; font-size: 0.95rem; letter-spacing: 0.5px;
}

.nav-link:hover { color: var(--luxury-gold); text-shadow: 0 0 8px rgba(230,199,111,0.6); }

.search-cart { display: flex; gap: 10px; align-items: center; white-space: nowrap; }

.search-input {
    padding: 8px 12px; border: 2px solid var(--luxury-gold); border-radius: 6px;
    font-size: 0.9rem; width: 200px; background: rgba(255,255,255,0.95); color: #2a2a2a;
}

.search-input:focus { outline: none; border-color: var(--luxury-gold); box-shadow: 0 0 12px rgba(181,137,33,0.6); }

.cart-btn {
    padding: 8px 16px; background: var(--luxury-gold); color: var(--maroon);
    border: none; border-radius: 4px; cursor: pointer; font-weight: 600;
    transition: all 0.3s ease;
}

.cart-btn:hover { background: #E6C76F; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(181,137,33,0.5); }

/* ===== HERO SWIPER ===== */
section[style*="grid-area: hero"] { margin-top: 70px; }

.hero-swiper { height: 60vh; }

.hero-swiper .swiper-slide {
    display: flex; align-items: center; justify-content: center;
    position: relative; background-size: cover; background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    overflow: hidden;
}

.hero-swiper .swiper-slide-active {
    opacity: 1;
    z-index: 10;
}

.swiper-slide {
    display: flex; align-items: center; justify-content: center;
    position: relative; background-size: cover; background-position: center;
}

.swiper-slide img {
    position: absolute; width: 100%; height: 100%; object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; color: #fff; background: linear-gradient(135deg, rgba(45, 10, 10, 0.7) 0%, rgba(74, 14, 14, 0.5) 50%, rgba(45, 10, 10, 0.7) 100%);
    padding: 40px; z-index: 2;
}

.hero-overlay h1 {
    font-size: 4rem; margin-bottom: 15px; text-shadow: 4px 4px 12px rgba(0,0,0,0.9);
    font-family: 'Playfair Display', serif; font-weight: 700; color: #E6C76F;
    letter-spacing: 2px; line-height: 1.3; max-width: 65%;
}

.hero-overlay p {
    font-size: 1.3rem; margin-bottom: 30px; text-shadow: 3px 3px 8px rgba(0,0,0,0.9);
    font-weight: 400; letter-spacing: 1.5px; color: #FFE8D6; line-height: 1.4;
}

/* ===== PROMO BAR ===== */
.promo-bar { padding: 50px 0; background: linear-gradient(135deg, #FFF8E7 0%, #FFFAF0 100%); border-bottom: 3px solid var(--gold); }

.promo-bar h3 { margin-bottom: 30px; font-size: 2rem; color: var(--maroon); font-family: 'Playfair Display', serif; font-weight: 700; letter-spacing: 1px; }

.deals-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }

.deal-card {
    background: linear-gradient(135deg, #FFFEF9 0%, #FFF9F0 100%);
    padding: 45px 35px; border-radius: 16px; text-align: center;
    box-shadow: 0 15px 50px rgba(74,14,14,0.15), inset 0 1px 0 rgba(255,255,255,0.8);
    transition: all 0.5s cubic-bezier(0.23,1,0.320,1); cursor: pointer;
    border: 2px solid rgba(212,175,55,0.3); position: relative; overflow: hidden;
}

.deal-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(212,175,55,0.5) 100%);
}

.deal-card:hover {
    transform: translateY(-15px); box-shadow: 0 25px 70px rgba(74,14,14,0.25), inset 0 1px 0 rgba(255,255,255,0.6); border-color: rgba(212,175,55,0.5);
}

/* ===== AUTO-CAROUSEL STYLES ===== */
.auto-carousel-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #FFF9F0 0%, #F5E6D3 50%, #FFF5E8 100%);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.auto-carousel-section h3 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.6rem;
    color: var(--maroon);
    font-family: "Playfair Display", serif;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.auto-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
}

.carousel-nav {
    background: var(--maroon) !important;
    color: var(--gold) !important;
    border-radius: 50%;
    width: 70px !important;
    height: 70px !important;
    border: 3px solid rgba(212, 175, 55, 0.4) !important;
    font-size: 32px !important;
    font-weight: bold !important;
    padding: 0 !important;
    cursor: pointer !important;
    flex-shrink: 0;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    outline: none !important;
}

.carousel-nav:hover {
    background: var(--gold) !important;
    color: #fff !important;
    transform: scale(1.15) !important;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6) !important;
}

.auto-track {
    flex: 1;
    display: flex;
    gap: 24px;
    overflow: hidden;
    transition: transform 0.6s ease-out;
}

.auto-card {
    flex-shrink: 0;
    text-align: center;
    cursor: pointer;
    padding: 15px 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.auto-card .featured-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF5E8 0%, #F5E6D3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 50px rgba(74, 14, 14, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    flex-shrink: 0;
    border: 6px solid var(--gold);
    position: relative;
}

.auto-card .featured-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.auto-card .featured-image:hover {
    box-shadow: 0 20px 60px rgba(74, 14, 14, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: scale(1.12) translateY(-5px);
    border-color: var(--gold);
}

.auto-card .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
}

.auto-card h4 {
    color: var(--maroon);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    font-family: "Playfair Display", serif;
    letter-spacing: 0.3px;
}

.auto-card .featured-price {
    color: var(--luxury-gold);
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0;
}

/* ===== CAROUSEL-WRAPPER STYLES (for all carousels) ===== */
.featured-carousel {
    padding: 50px 0;
    background: linear-gradient(180deg, #FFF9F0 0%, #F5E6D3 50%, #FFF5E8 100%);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.featured-carousel h3 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 2.6rem;
    color: var(--maroon);
    font-family: "Playfair Display", serif;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
}

.carousel-center {
    flex: 1;
    width: 100%;
    padding: 0 30px 0 15px;
}

.carousel-center .swiper {
    width: 100%;
    height: auto;
    padding: 25px 0;
    overflow: visible;
}

.carousel-nav-prev,
.carousel-nav-next {
    background: var(--maroon) !important;
    color: var(--gold) !important;
    border-radius: 50%;
    width: 70px !important;
    height: 70px !important;
    border: 3px solid rgba(212, 175, 55, 0.4) !important;
    font-size: 32px !important;
    font-weight: bold !important;
    padding: 0 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    outline: none !important;
    flex-shrink: 0;
    position: static !important;
}

.carousel-nav-prev:hover,
.carousel-nav-next:hover {
    background: var(--gold) !important;
    color: #fff !important;
    transform: scale(1.15) !important;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6) !important;
}

.product-image-carousel {
    width: 135px;
    height: 135px;
    aspect-ratio: 1;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF5E8 0%, #F5E6D3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 50px rgba(74, 14, 14, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    border: 6px solid var(--gold);
    position: relative;
    flex-shrink: 0;
}

.product-image-carousel::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.product-image-carousel:hover {
    box-shadow: 0 20px 60px rgba(74, 14, 14, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: scale(1.12) translateY(-5px);
    border-color: var(--gold);
}

.product-image-carousel img {
    width: 155%;
    height: 155%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 1;
}

.featured-item {
    text-align: center;
    padding: 20px 15px 10px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.featured-item h4 {
    color: var(--maroon);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    font-family: "Playfair Display", serif;
    letter-spacing: 0.3px;
}

.featured-item .featured-price {
    color: var(--luxury-gold);
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0;
}

/* ===== FEATURED SPECIALS CAROUSEL - Product Boxes ===== */
.footer {
    background: var(--dark-maroon);
    color: #e0d5c7;
    padding: 60px 0 20px 0;
    border-top: 3px solid var(--gold);
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #e0d5c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--gold);
}

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

.newsletter-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gold);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #e0d5c7;
    font-size: 0.95rem;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(212, 175, 55, 0.6);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
}

.newsletter-btn {
    background: var(--gold);
    color: var(--maroon);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.newsletter-btn:hover {
    background: #B58921;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 20px;
    text-align: center;
    background: #1a0808;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #d4c5b9;
}

/* ===== ENHANCED FEATURED CAROUSEL LAYOUT ===== */
.featured-carousel .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.carousel-center h3 { margin-bottom: 30px; font-size: 2.2rem; color: var(--maroon); }
/* Featured Specials specific overrides */
.featured-specials-carousel .carousel-wrapper { gap: 15px; }
.featured-specials-carousel .carousel-center { padding: 0; }
.featured-product-box {
  width: 160px !important; height: 260px !important; display: flex !important;
  flex-direction: column !important; align-items: center !important; justify-content: flex-start !important;
  background: white !important; border-radius: 12px !important; padding: 6px !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1) !important; transition: transform 0.3s !important; 
  overflow: hidden !important; position: relative !important;
}
.featured-product-box:hover { transform: translateY(-5px) !important; }
.box-image {
  width: 140px !important; height: 140px !important; border-radius: 8px !important; 
  margin-bottom: 6px !important; background: #f5f5f5 !important;
  display: block !important; flex-shrink: 0 !important; position: relative !important;
  overflow: hidden !important;
}
.box-image img {
  width: 100% !important; height: 100% !important; object-fit: cover !important; 
  object-position: center !important; display: block !important; position: relative !important;
  opacity: 1 !important;
}
.box-content { 
  text-align: center !important; flex-grow: 1 !important; display: flex !important; 
  flex-direction: column !important; justify-content: center !important; padding: 8px 0 !important;
  min-height: 50px !important;
}
.box-content h4 { 
  font-size: 1rem !important; margin: 0 0 4px 0 !important; color: var(--maroon) !important; 
  opacity: 1 !important; line-height: 1.2 !important;
}
.featured-price { 
  font-size: 1rem !important; font-weight: bold !important; color: var(--luxury-gold) !important; 
  opacity: 1 !important; margin: 0 !important;
}

/* ===== SIGNUP PAGE STYLING ===== */
/* Warm luxury background applied to signup page */
body {
  background: radial-gradient(circle at center, #FFF9E6 0%, #E8D4B8 50%, #C9A876 100%);
  min-height: 100vh;
}

.signup-hero {
  margin-top: 70px; padding: 60px 20px; text-align: center;
  background: linear-gradient(135deg, rgba(74,14,14,0.08) 0%, rgba(181,137,33,0.05) 100%);
  border-bottom: 3px solid var(--luxury-gold);
}

.signup-hero h1 {
  font-size: 3.2rem; color: var(--maroon); font-family: 'Playfair Display', serif;
  margin: 0 0 15px 0; letter-spacing: 2px; font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.signup-hero p {
  font-size: 1.4rem; color: #8B6F47; letter-spacing: 1px; margin: 0;
  font-weight: 600;
}

.signup-choices {
  padding: 80px 20px;
  background: rgba(255,255,255,0.3);
}

.choices-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto;
}

.signup-choice-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,249,230,0.95) 100%);
  border: 3px solid var(--luxury-gold); border-radius: 16px; padding: 40px; 
  text-align: center; box-shadow: 0 12px 35px rgba(181,137,33,0.25);
  transition: all 0.4s ease; position: relative;
  overflow: hidden;
}

.signup-choice-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, var(--luxury-gold) 0%, transparent 100%);
  opacity: 0; transition: opacity 0.3s ease; z-index: 1; pointer-events: none;
}

.signup-choice-card:hover {
  transform: translateY(-8px); box-shadow: 0 20px 50px rgba(181,137,33,0.35);
  border-color: #E6C76F;
}

.signup-choice-card:hover::before { opacity: 0.08; }

.choice-icon {
  font-size: 3.5rem; margin-bottom: 20px; display: block;
}

.signup-choice-card h2 {
  font-size: 1.8rem; color: var(--maroon); margin: 0 0 15px 0; letter-spacing: 1px;
  font-family: 'Playfair Display', serif;
}

.signup-choice-card p {
  font-size: 1.05rem; color: #6B5B47; margin: 0 0 30px 0; line-height: 1.6;
}

.features-list {
  list-style: none; padding: 0; margin: 0 0 30px 0; text-align: left;
}

.features-list li {
  padding: 12px 0; color: #5C4E3C; font-size: 1rem; border-bottom: 1px solid rgba(181,137,33,0.15);
  letter-spacing: 0.5px;
}

.features-list li:last-child { border-bottom: none; }

.choice-btn {
  display: inline-block; padding: 14px 32px; background: linear-gradient(135deg, var(--maroon) 0%, #6B1515 100%);
  color: var(--luxury-gold); text-decoration: none; border-radius: 8px;
  font-weight: 700; letter-spacing: 1px; transition: all 0.3s ease;
  border: 2px solid var(--luxury-gold); box-shadow: 0 4px 12px rgba(74,14,14,0.3);
}

.choice-btn:hover {
  background: linear-gradient(135deg, #6B1515 0%, var(--maroon) 100%);
  color: #FFE8D6; text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  box-shadow: 0 8px 20px rgba(181,137,33,0.4); transform: translateY(-2px);
}

.why-signup {
  padding: 80px 20px; background: linear-gradient(135deg, rgba(74,14,14,0.05) 0%, rgba(181,137,33,0.03) 100%);
  border-top: 3px solid var(--luxury-gold);
}

.why-signup h2 {
  font-size: 2.5rem; color: var(--maroon); text-align: center; margin: 0 0 50px 0;
  letter-spacing: 2px; font-family: 'Playfair Display', serif;
}

.benefits-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto;
}

.benefit-item {
  text-align: center; padding: 30px; background: rgba(255,255,255,0.4);
  border-left: 4px solid var(--luxury-gold); border-radius: 8px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255,255,255,0.6); box-shadow: 0 6px 15px rgba(181,137,33,0.2);
}

.benefit-item h3 {
  font-size: 1.3rem; color: var(--maroon); margin: 0 0 12px 0;
}

.benefit-item p {
  color: #6B5B47; margin: 0; line-height: 1.6;
}

/* Responsive signup page */
@media (max-width: 768px) {
  .choices-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .signup-hero h1 { font-size: 2.2rem; }
  .signup-hero p { font-size: 1.1rem; }
  .featured-carousel { padding: 35px 0; }
  .featured-carousel h3 { margin-bottom: 15px; font-size: 1.8rem; }
  .carousel-wrapper { gap: 15px; }
  .carousel-center { padding: 0 15px 0 10px; }
  .carousel-center .swiper { padding: 15px 0; }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
}
.box-content-btn {
  width: 100% !important; padding: 10px 8px !important; background: var(--maroon) !important;
  color: white !important; border: 1px solid var(--gold) !important; border-radius: 6px !important; font-weight: 600 !important;
  cursor: pointer !important; transition: all 0.3s !important; font-size: 0.85rem !important;
  margin-top: auto !important;
}
.box-content-btn:hover {
    background: var(--gold) !important;
    color: #fff !important;
}
.featured-swiper-carousel { overflow: hidden !important; width: 100% !important; }
.featured-swiper-carousel .swiper-slide { display: flex !important; justify-content: center !important; height: auto !important; }

/* Rush Banner Styles */
.rush-banner {
    background: linear-gradient(90deg, var(--maroon) 0%, #6B1515 70%, var(--gold) 100%);
    color: #fff;
    padding: 0;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}
.rush-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    min-height: 70px;
    font-size: 1.15rem;
    font-weight: 600;
}
.rush-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 180px;
}
.rush-label {
    font-size: 0.95rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: var(--gold);
    text-shadow: 1px 1px 4px #2d0a0a99;
}
.rush-info {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
    margin-top: 2px;
}
.rush-divider {
    width: 2px;
    height: 40px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
}
.rush-btn {
    background: var(--gold);
    color: var(--maroon);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    margin-left: 30px;
    box-shadow: 0 2px 8px rgba(44,10,10,0.15);
    border: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    font-size: 1rem;
}
.rush-btn:hover {
    background: var(--maroon);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}
@media (max-width: 700px) {
    .rush-content { flex-direction: column; gap: 10px; min-height: unset; }
    .rush-divider { display: none; }
    .rush-btn { margin-left: 0; margin-top: 10px; }
    .rush-text-group { align-items: center; }
}

/* Carousel overflow and arrow fixes */
.carousel-center .swiper {
    overflow: visible !important;
}
.swiper, .swiper-wrapper {
    box-sizing: border-box;
}
.featured-carousel .container {
    overflow-x: hidden;
}
.carousel-nav {
    z-index: 10 !important;
    position: relative;
    flex-shrink: 0;
}
.carousel-center {
    padding-left: 0;
    padding-right: 0;
    flex: 1 1 0%;
    min-width: 0;
    max-width: calc(100vw - 160px);
    margin: 0 auto;
}
.carousel-wrapper {
    gap: 0;
    justify-content: space-between;
}

/* Ensure carousel shows 5 full slides and no partials */
.carousel-center, .wine-swiper {
    max-width: 100%;
    min-width: 0;
}

/* Prevent carousel slides from showing past the arrows */
.carousel-center {
    overflow: hidden;
    position: relative;
}
