/* ==========================================================================
   Logan Packaging Supplies — Custom Stylesheet (Pixel-Perfect Figma Conversion)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & CSS Variables
   -------------------------------------------------------------------------- */
:root {
  --primary-purple: #520668;
  --primary-purple-dark: #3e0350;
  --primary-purple-light: #6a0b86;
  --brand-orange: #dc7634;
  --brand-orange-hover: #c85a1a;
  --text-dark: #1e1e1e;
  --text-muted: #666666;
  --text-light: #ffffff;
  --bg-card-light: #fafafa;
  --bg-card-border: #ececec;
  --bg-section-gray: #f8f9fa;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 6px;
  --radius-xl: 24px;
  --radius-pill: 50px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.09);
  --shadow-hover: 0 12px 28px rgba(82, 6, 104, 0.14);
  --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --site-max-width: 1400px;
}

/* --------------------------------------------------------------------------
   2. Global Resets & Typography
   -------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background-color: #f8f9fa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover {
  color: var(--brand-orange);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-container {
  max-width: var(--site-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-title {
  color: var(--primary-purple);
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.25rem;
  letter-spacing: -0.02em;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 0;
}

/* Main header row */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
}

/* =========================================================
   LOGO
   ========================================================= */

.brand-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo img {
    width: 220px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* =========================================================
   CATEGORY BUTTON
   ========================================================= */

.category-dropdown-btn {
    background-color: var(--primary-purple);
    color: #ffffff !important;

    border: none;
    border-radius: 5px;

    padding: 9px 12px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    font-size: 13px;
    font-weight: 600;

    line-height: 1;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.category-dropdown-btn svg {
    width: 14px;
    height: 14px;
}

.category-dropdown-btn:hover {
    background-color: var(--primary-purple-dark);
    transform: translateY(-1px);
}

/* =========================================================
   NAVIGATION
   ========================================================= */

.header-nav-wrap {
    display: flex;
    align-items: center;
}

.nav-links-list {
    display: flex;
    align-items: center;

    gap: 42px;

    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links-list li {
    margin: 0;
    padding: 0;
}

.nav-links-list a {
    display: inline-block;

    position: relative;

    color: var(--primary-purple);
    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    padding: 8px 0;

    transition: color 0.2s ease;
}

.nav-links-list a:hover {
    color: var(--primary-purple-dark);
}

/* Active underline */
.nav-links-list a.active {
    color: var(--primary-purple);
}

.nav-links-list a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 1px;

    height: 2px;

    background-color: var(--brand-orange);
    border-radius: 2px;
}

/* =========================================================
   RIGHT HEADER ACTIONS
   ========================================================= */

.header-actions {
    display: flex;
    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}

.action-icon-btn {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    padding: 0;

    border: none;
    background: transparent;

    color: var(--primary-purple);

    cursor: pointer;

    border-radius: 50%;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.action-icon-btn svg {
    width: 21px;
    height: 21px;

    display: block;
}

.action-icon-btn:hover {
    background-color: #f5eafa;
    transform: scale(1.08);
}

/* =========================================================
   CART BADGE
   ========================================================= */

.cart-badge {
    position: absolute;

    top: -3px;
    right: -4px;

    width: 17px;
    height: 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: var(--brand-orange);
    color: #ffffff;

    border-radius: 50%;

    font-size: 9px;
    font-weight: 700;

    line-height: 1;

    box-shadow: none;
}

/* =========================================================
   MOBILE MENU
   ========================================================= */

.mobile-menu-btn {
    display: none;

    width: 38px;
    height: 38px;

    padding: 0;

    background: transparent;
    border: none;

    color: var(--primary-purple);

    cursor: pointer;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199px) {

    .brand-logo img {
        width: 190px;
    }

    .nav-links-list {
        gap: 25px;
    }

}

@media (max-width: 991px) {

    .header-nav-wrap,
    .category-dropdown-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-container {
        min-height: 55px;
    }

}

@media (max-width: 575px) {

    .site-header {
        padding: 10px 0;
    }

    .brand-logo img {
        width: 165px;
    }

    .header-actions {
        gap: 5px;
    }

    .action-icon-btn {
        width: 34px;
        height: 34px;
    }

}

/* --------------------------------------------------------------------------
   4. Hero Bento Section
   -------------------------------------------------------------------------- */
   
.hero-section {
  padding-top: 28px;
  padding-bottom: 30px;
}

.hero-left-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.hero-purple-card {
  background-color: var(--primary-purple);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 290px;
  flex: 1;
}

.hero-purple-card h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-purple-card p {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.55;
}

.btn-white-pill {
  background-color: #ffffff;
  color: var(--primary-purple) !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-white-pill:hover {
  background-color: #f8f8f8;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-shipping-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 270px;
  box-shadow: var(--shadow-sm);
}

.hero-shipping-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-shipping-card:hover img {
  transform: scale(1.03);
}

.hero-promo-card {
  background-color: #f2f4f7;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 584px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.hero-promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.hero-slider {
    position: relative;
    width: 100%;
}

.hero-slide {
    display: none;
}

.hero-slide.active {
    display: block;
}


/* Arrows */

.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.9);
    color: #333;

    font-size: 22px;
    cursor: pointer;

    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-prev {
    left: 15px;
}

.hero-slider-next {
    right: 15px;
}


/* Dots */

.hero-slider-dots {
    position: absolute;

    bottom: 15px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    gap: 8px;

    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;

    padding: 0;

    border: none;
    border-radius: 50%;

    background: #ffffff;

    opacity: 0.5;

    cursor: pointer;
}

.hero-dot.active {
    opacity: 1;
}
/* --------------------------------------------------------------------------
   5. Categories Section
   -------------------------------------------------------------------------- */
.categories-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.category-featured-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--bg-card-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.category-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.category-featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-label {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-purple);
  text-align: center;
  margin-top: 14px;
}

.category-small-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--bg-card-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.category-small-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.category-small-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   6. Product Cards (Best Sellers & New Arrivals)
   -------------------------------------------------------------------------- */
.products-section {
  padding-top: 40px;
  padding-bottom: 115px;
  position: relative;
}

.products-slider-wrapper {
  position: relative;
}

.product-card {
  background-color: transparent;
  border: none;
  padding: 0;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.product-image-box {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid #f0f0f0;
  box-shadow: var(--shadow-sm);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 12px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.product-image-box img{
  object-fit: contain;
  width: 170px;
}

.product-card:hover .product-image-box {
  box-shadow: var(--shadow-hover);
  border-color: rgba(82, 6, 104, 0.15);
}

.product-add-btn {
  position: absolute;
  bottom: 4%;
  right: 4%;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-purple);
  color: #ffffff;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  z-index: 5;
}


.product-add-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.product-add-btn:hover {
  background-color: var(--brand-orange-hover);
}

.product-info {
  margin-top: 14px;
}

.product-title {
  color: var(--primary-purple);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.35;
}

.product-price {
  color: var(--primary-purple);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Real Product Carousel (scroll-snap track)
   -------------------------------------------------------------------------- */
.products-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.products-track::-webkit-scrollbar { display: none; }
.products-track { scrollbar-width: none; -ms-overflow-style: none; }

.product-slide {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: calc(100% - 24px);
}

@media (min-width: 576px) {
  .product-slide { width: calc(50% - 18px); }
}
@media (min-width: 992px) {
  .product-slide { width: calc(25% - 18px); }
}

.carousel-nav-btn.prev-btn {
  left: -18px;
  right: auto;
}

.carousel-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 1200px) {
  .carousel-nav-btn.prev-btn { left: -10px; }
}

.carousel-nav-btn {
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: var(--primary-purple);
  color: #ffffff;
  border-radius: var(--radius-sm);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 10;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.carousel-nav-btn:hover {
  background-color: var(--brand-orange);
  transform: translateY(-50%) scale(1.08);
}

/* --------------------------------------------------------------------------
   7. Split Promotional Banners
   -------------------------------------------------------------------------- */
.promo-banners-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.promo-banner-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.promo-banner-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.promo-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.promo-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(15, 15, 15, 0.72) 0%, rgba(20, 20, 20, 0.35) 70%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
}

.promo-banner-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  max-width: 440px;
}

.promo-banner-content h3 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.promo-banner-content p {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   8. Wide Feature Banner ("Cut With Confidence")
   -------------------------------------------------------------------------- */
.wide-banner-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.wide-banner-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 50px 48px;
  box-shadow: var(--shadow-sm);
}

.wide-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.wide-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 2;
}

.wide-banner-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  max-width: 520px;
}

.wide-banner-content h2 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.wide-banner-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 26px;
}

/* --------------------------------------------------------------------------
   9. Newsletter Subscribe Banner ("Stay Packed & Informed")
   -------------------------------------------------------------------------- */
.newsletter-section {
  padding-top: 20px;
  padding-bottom: 30px;
}

.newsletter-card {
  background-color: var(--brand-orange);
  border-radius: var(--radius-lg);
  padding: 30px 48px;
  color: #ffffff;
}

.newsletter-card h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.newsletter-card p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

 .footer-desc-left p{
  margin: 0;
}

.newsletter-form-box {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 6px 6px 6px 20px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.newsletter-input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.newsletter-input::placeholder {
  color: #888888;
}

.newsletter-submit-btn {
  background-color: var(--primary-purple);
  color: #ffffff;
  border: none;
  border-radius: 6px ;
  padding: 12px 57px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}

.newsletter-submit-btn:hover {
  background-color: var(--primary-purple-dark);
  transform: scale(1.02);
}

/* --------------------------------------------------------------------------
   10. Site Footer
   -------------------------------------------------------------------------- */
.site-footer {
  padding-top: 10px;
  padding-bottom: 40px;
}
.footer-left-card-background {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.footer-left-card {
  background-color: var(--brand-orange);
  border-radius: var(--radius-lg);
  padding: 30px 30px;
  color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-logo-box {
  /* background-color: #ffffff; */
  border-radius: var(--radius-sm);
  padding: 16px;
  display: inline-block;
  /* margin-bottom: 22px; */
  /* box-shadow: var(--shadow-sm); */
}

.footer-logo-box img {
  height: 50px;
  width: 100%;
  object-fit: contain;
}

.footer-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.2;
  /* margin-bottom: 24px; */
}

.footer-map-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.footer-map-card:hover {
  transform: translateY(-3px);
}

.footer-map-card img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-right-card {
  background-color: var(--primary-purple);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px 44px;
  color: #ffffff;
  height: 100%;
}

.footer-heading {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links-list a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-links-list a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-contact-col a{
  font-size: 11px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0px 28px;
  margin-top: 15px;
}

.social-icon-circle {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #ffffff;
  color: var(--primary-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.social-icon-circle:hover {
  background-color: var(--primary-purple);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 48px;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   11. Toast Notifications & Live Feedback
   -------------------------------------------------------------------------- */
.custom-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--primary-purple);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.custom-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* --------------------------------------------------------------------------
   12. Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .hero-purple-card h1 {
    font-size: 2.25rem;
  }
  .category-featured-card {
    height: 420px;
  }
  .category-small-card {
    height: 190px;
  }
  .nav-links-list {
    gap: 20px;
  }
  .carousel-nav-btn {
    right: -10px;
  }
}

@media (max-width: 991.98px) {
  .header-nav-wrap {
    display: none;
  }
  .mobile-menu-btn {
    display: block !important;
  }
  .hero-promo-card {
    min-height: 440px;
  }
  .category-featured-card {
    height: 380px;
    margin-bottom: 24px;
  }
  .category-small-card {
    height: 180px;
  }
  .promo-banner-card {
    height: 320px;
  }
  .promo-banner-content h3 {
    font-size: 1.85rem;
  }
  .wide-banner-card {
    height: 320px;
  }
  .wide-banner-content h2 {
    font-size: 2.1rem;
  }
  .newsletter-card {
    padding: 32px 28px;
  }
  .newsletter-card h2 {
    font-size: 1.85rem;
  }
  .footer-left-card {
    margin-bottom: 24px;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 1.85rem;
  }
  .hero-purple-card {
    padding: 32px 24px;
  }
  .hero-purple-card h1 {
    font-size: 1.95rem;
  }
  .hero-promo-card {
    min-height: 360px;
  }
  .category-featured-card {
    height: 280px;
  }
  .category-small-card {
    height: 160px;
  }
  .promo-banner-card {
    height: 280px;
    padding: 28px 24px;
  }
  .promo-banner-content h3 {
    font-size: 1.5rem;
  }
  .wide-banner-card {
    height: 280px;
    padding: 28px 24px;
  }
  .wide-banner-content h2 {
    font-size: 1.7rem;
  }
  .newsletter-form-box {
    flex-direction: column;
    padding: 12px;
    border-radius: var(--radius-md);
    gap: 12px;
  }
  .newsletter-submit-btn {
    width: 100%;
  }
  .footer-right-card {
    padding: 32px 24px;
  }
  .carousel-nav-btn {
    display: none;
  }
}
