body {
            font-family: 'Lora', serif;
            background-color: #f9f7f2;
            color: #4a4a4a;
        }
        
        .font-serif {
            font-family: 'Cinzel', serif;
        }
        
        .gradient-text {
            background: linear-gradient(90deg, #8B5A2B 0%, #D2B48C 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .gradient-bg {
            background: linear-gradient(135deg, #8B5A2B 0%, #D2B48C 100%);
        }
        
        .nav-link {
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #8B5A2B;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .dropdown-menu {
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }
        
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .product-card {
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            border: 1px solid #e5e5e5;
            border-radius: 4px;
            background: #fff;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-card {
            background: white;
            border-radius: 4px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #e5e5e5;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .faq-item {
            border-radius: 4px;
            transition: all 0.3s ease;
            border: 1px solid #e5e5e5;
        }
        
        .faq-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        /* Slider styles */
        .slider-container {
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
        }
        
        .slider-item {
            scroll-snap-align: start;
            flex: 0 0 100%;
        }
        
        @media (min-width: 768px) {
            .slider-item {
                flex: 0 0 50%;
            }
        }
        
        @media (min-width: 1024px) {
            .slider-item {
                flex: 0 0 33.33%;
            }
        }
        
        /* Back to top button */
        #back-to-top {
            transition: all 0.3s ease;
        }
        
        #back-to-top:hover {
            transform: translateY(-3px);
        }
        
        .animate-fade-in {
            animation: fadeIn 1s ease-in-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Classic storefront styles */
        .classic-border {
            border: 2px solid #8B5A2B;
            border-radius: 4px;
        }
        
        .wood-pattern {
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h100v100H0z' fill='%238B5A2B'/%3E%3Cpath d='M0 0h100v2H0z' fill='%23A67C52'/%3E%3Cpath d='M0 4h100v2H0z' fill='%23A67C52'/%3E%3Cpath d='M0 8h100v2H0z' fill='%23A67C52'/%3E%3Cpath d='M0 12h100v2H0z' fill='%23A67C52'/%3E%3C/svg%3E");
            background-size: 100px 100px;
        }
        
        .vintage-header {
            background: linear-gradient(to bottom, #8B5A2B, #6d451c);
            color: #f9f7f2;
            border-bottom: 3px solid #D2B48C;
        }
        
        .vintage-btn {
            background: linear-gradient(to bottom, #8B5A2B, #6d451c);
            color: #f9f7f2;
            border: 1px solid #D2B48C;
            border-radius: 4px;
            padding: 8px 16px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .vintage-btn:hover {
            background: linear-gradient(to bottom, #6d451c, #8B5A2B);
            transform: translateY(-2px);
        }
        
        .ornamental-divider {
            display: flex;
            align-items: center;
            text-align: center;
            margin: 20px 0;
        }
        
        .ornamental-divider::before,
        .ornamental-divider::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid #8B5A2B;
        }
        
        .ornamental-divider::before {
            margin-right: 10px;
        }
        
        .ornamental-divider::after {
            margin-left: 10px;
        }
        
        .store-window {
            background: #fff;
            border: 3px solid #8B5A2B;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            padding: 20px;
            margin-bottom: 30px;
        }
        
        .price-tag {
            background: #8B5A2B;
            color: #fff;
            padding: 5px 10px;
            border-radius: 3px;
            font-weight: bold;
            display: inline-block;
            position: relative;
        }
        
        .price-tag::after {
            content: '';
            position: absolute;
            left: 100%;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-left: 8px solid #8B5A2B;
        }
        
        .awning {
            background: linear-gradient(135deg, #8B5A2B 0%, #A67C52 100%);
            padding: 15px 30px;
            color: white;
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .awning:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid #8B5A2B;
        }
        
        .awning:before {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid #8B5A2B;
        }
        
        .vintage-card {
            background: #fff;
            border: 1px solid #e5e5e5;
            border-radius: 4px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            padding: 20px;
            transition: all 0.3s;
        }
        
        .vintage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .section-title {
            font-family: 'Cinzel', serif;
            color: #8B5A2B;
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background: linear-gradient(to right, #8B5A2B, #D2B48C, #8B5A2B);
        }
       
       :root{
    --bar-height: 48px;
    --bar-gap: 8px; /* space between bars */
    --bars-total-height: calc((var(--bar-height) * 2) + var(--bar-gap));
    --buy-width: auto;
  }

  /* ensure page content doesn't hide under fixed bars */
  body { padding-top: var(--bars-total-height); }

  .promo-stack {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: var(--bar-gap);
    pointer-events: none;
    padding: 8px; /* tiny outer safety */
    box-sizing: border-box;
  }

  .promo-bar {
    height: var(--bar-height);
    display: flex;
    align-items: center;
    justify-content: space-between; /* left text, right button */
    gap: 1rem;
    padding: 0 1rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.95rem;
    pointer-events: auto;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    animation: fadeIn 600ms ease both;
    overflow: hidden;
  }

  .promo-left {
    display:flex;
    align-items:center;
    gap:0.75rem;
    min-width:0;
  }

  .promo-left span {
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .promo-green { background: linear-gradient(90deg,#059669,#10b981); }
  .promo-blue  { background: linear-gradient(90deg,#0ea5e9,#0369a1); }

  .promo-icon { width:22px; height:22px; flex:0 0 22px; display:inline-block; }

  /* LIMITED badge */
  .limited {
    background: rgba(255,255,255,0.12);
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    margin-left: 6px;
    text-transform:uppercase;
    letter-spacing: .06em;
  }

  /* BUY NOW button styles: glow + blinking + hover-shake */
  .buy-now {
    background: linear-gradient(180deg,#ef4444,#dc2626);
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 900;
    color:#fff;
    text-transform:uppercase;
    display:inline-flex;
    align-items:center;
    gap:8px;
    box-shadow: 0 6px 20px rgba(220,38,38,0.28), 0 0 18px rgba(239,68,68,0.18);
    border: 1px solid rgba(255,255,255,0.06);
    transform-origin: center;
    transition: transform 160ms ease, box-shadow 160ms ease;
    animation: buyPulse 1.2s infinite alternate;
    white-space:nowrap;
  }

  .buy-now .dot {
    width:8px; height:8px; border-radius:50%;
    background: #fff7f7;
    box-shadow: 0 0 8px rgba(255,255,255,0.9);
    opacity: .95;
  }

  /* pulse (soft blink) */
  @keyframes buyPulse {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    100% { transform: translateY(-2px) scale(1.02); opacity: .6; }
  }

  /* hover: small shake and heavier glow */
  .buy-now:hover {
    transform: translateY(-3px) rotate(-1deg) scale(1.03);
    box-shadow: 0 10px 30px rgba(220,38,38,0.36), 0 0 28px rgba(239,68,68,0.28);
  }

  /* slight attention wobble when focused (keyboard) */
  .buy-now:focus { outline: 3px solid rgba(255,255,255,0.14); box-shadow: 0 12px 36px rgba(220,38,38,0.42); }

  /* small responsive adjustments */
  @media (max-width:640px) {
    .promo-bar { padding: 0 0.8rem; border-radius:6px; font-size:.86rem; }
    .limited { display:none; } /* hide badge on very small screens */
    .promo-left span { display:inline-block; max-width: 60vw; }
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
   .vintage-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(245, 158, 11, 0.1);
            display: block;
            text-decoration: none;
        }
        
        .vintage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        
        .section-title {
            font-weight: 700;
            color: #1f2937;
            text-align: center;
            margin-bottom: 2.5rem;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: #d97706;
            margin: 0.5rem auto;
            border-radius: 2px;
        }