:root { --card-bg: #ffffff; --accent-yellow: #ffd54a; --shop-bg: #eeeee37e; }
/* Styles specific to the shop page */
.shop-page{ padding: calc(36px + var(--topbar-height)) 0 60px; background: var(--shop-bg); touch-action: manipulation; }

/* Push container down on mobile */
.shop-page .container.catalog {
  margin-top: 2.5rem !important;
}

@media (max-width: 640px) {
  .byund img {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 640px) {
  .shop-page .container.catalog {
    margin-top: 2rem !important;
  }
  .topbar-inner{ padding:10px 12px; gap:8px; }
  .brand .logo img{ width:96px; }
  .search-wrap input{ width:130px; max-width:unset; }
  .search-wrap{ padding:4px 8px; margin-right:6px; }
  .top-actions .notif-btn{ margin-right:6px; padding:6px 8px; }
  .main-nav{ padding:8px 0; }
  .main-nav ul{ gap:10px; padding:6px 8px; flex-wrap:nowrap; justify-content:flex-start; overflow-x:auto; -webkit-overflow-scrolling:touch; }
  .main-nav ul li{ flex: 0 0 auto; }
  .main-nav a{ font-size:11px; padding:6px 6px; }
  .main-nav .nav-indicator{ bottom:-6px; left:0; }
  .shop-head{ margin-top: 30px; }
}



/* 🔧 Ensure shop page doesn't horizontally overflow on mobile */
.shop-page{ overflow-x: hidden !important; }
.shop-page .container{ max-width:100% !important; overflow-x:hidden; }
/* Disable horizontal scrolling for the top nav only on the shop page mobile view (use hamburger off-canvas instead) */
.shop-page .main-nav ul{ overflow-x: hidden !important; }
.shop-head{ display:flex; align-items:center; margin-bottom:22px; gap:24px; }
.shop-head h1{ font-size:26px; margin:0; }
.shop-head .filters{ margin-left:auto; display:flex; align-items:center; gap:10px; }
.shop-head .filters label{ font-size:12px; color:#333; text-transform:uppercase; letter-spacing:1.8px; display:flex; align-items:center; gap:10px; margin-top:5px; }
.shop-head .filters select{ padding:8px 10px; border-radius:8px; border:1px solid #e9e9e9; min-width:160px; background:#fff; box-shadow: 0 6px 20px rgba(0,0,0,0.04); font-weight:600; }
/* Add a right margin to the Sort select so there's spacing after the Default option */
.shop-head .filters select#sortSelect{ margin-right:18px; }
.shop-head .filters select:focus{ outline:2px solid rgba(0,0,0,0.06); }

.shop-grid{ display:grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap:50px; padding-top:2px; align-items:stretch; grid-auto-flow: row; grid-auto-rows: 1fr; justify-content:center; }
.product-wrap{ display:flex; flex-direction:column; align-items:stretch; justify-content:space-between; gap:10px; width:220px; max-width:100%; }
.shop-card{ text-align:center; padding:0; width:220px; display:flex; flex-direction:column; align-items:center; background:transparent; border:none; box-sizing:border-box; transition:box-shadow .18s ease, transform .18s ease; overflow:visible; cursor:pointer; flex:1 1 auto; }
.shop-card .card-content{ padding:18px; width:100%; display:flex; flex-direction:column; align-items:center; background:var(--card-bg); border:1px solid #cf2b2b; border-radius:8px; box-shadow:0 6px 18px rgba(0,0,0,0.05); }
.shop-card .thumb{ width:100%; max-width:180px; height:180px; object-fit:contain; margin:0 auto 6px; display:block; border-radius:6px; background: rgba(0, 0, 255, 0); padding:1px; box-shadow:none; transition:transform .2s cubic-bezier(.2,.8,.2,1); transform-origin:center center; cursor:pointer; }
.shop-card .title{ font-size:12px; text-transform:uppercase; color:#333; letter-spacing:1px; margin-top:12px; }
.shop-card .price{ font-weight:700; margin-top:6px; }
.shop-card .stars{ margin-top:8px; }
/* Star rating widget for shop page matches the index styles */
.shop-card .stars{
  --star-size: 12px;
  font-size: var(--star-size);
  --percent: 100%;
  --star-color: #d4af37;
  display:inline-block; position:relative; line-height:1; font-weight:700; letter-spacing:3px;
  color: #dcdcdc;
}
.shop-card .stars::before{ content: '★★★★★'; color:#dcdcdc; text-shadow: 0 1px 0 rgba(0,0,0,0.04); }
.shop-card .stars::after{
  content: '★★★★★';
  position:absolute; left:0; top:0; overflow:hidden; width:var(--percent, 0%); white-space:nowrap; transition: width .18s ease;
  background: linear-gradient(180deg, #fff9e6 0%, #ffd54a 30%, #d4af37 70%, #b88a12 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 0 rgba(255,255,255,0.35), 0 2px 8px rgba(0,0,0,0.18);
}
.shop-page{ --fly-duration: .92s; --fly-easing: cubic-bezier(.22,.8,.28,1); }
.shop-card .rating-value{ display:inline-block; vertical-align:middle; margin-left:8px; color:#333; font-size:11px; font-weight:700; }
.shop-card .actions{ margin-top:10px; display:flex; gap:8px; justify-content:center; }
.btn{ display:inline-block; padding:8px 10px; border-radius:4px; font-size:13px; text-decoration:none; }
.btn-add{ background:#111; color:#fff; border: none; cursor: pointer; padding:8px 12px; margin-top:8px; transition: background .12s ease, transform .12s ease, box-shadow .12s ease; }
.product-wrap .btn-add{ width:140px; margin-top:12px; align-self:center; }
.product-wrap .btn-add:hover, .product-wrap .btn-add:focus{ background: #222; color: var(--accent-yellow); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.14); outline: none; }
.product-wrap .btn-add:active{ background: #191919; color: var(--accent-yellow);} 
.product-wrap .btn-add:focus{ box-shadow: 0 0 0 3px rgba(34,34,34,0.08); }
.product-wrap:hover .card-content{ box-shadow:0 12px 28px rgba(0,0,0,0.08); transform: translateY(-2px); }
.product-wrap:hover .thumb{ transform: scale(1.06); }
.btn-view{ background:#f1f1f1; color:#222; }

/* Make the grid responsive: 5 columns on wide screens, 4/3/2/1 at breakpoints */
@media (max-width: 1400px){
  .shop-grid{ grid-template-columns: repeat(4, 220px); gap:40px; justify-content:center; }
}
@media (max-width: 1100px){
  .shop-grid{ grid-template-columns: repeat(3, 220px); gap:30px; justify-content:center; }
}
@media (max-width: 900px){
  .shop-grid{ grid-template-columns: repeat(2, 220px); gap:24px; justify-content:center; }
}
@media (max-width: 640px){
  .shop-grid{ grid-template-columns: 1fr; gap:16px; }
  .shop-head{ flex-direction:column; align-items:flex-start; gap:10px; padding: 0 0; }
  .shop-card .card-content{ padding:0; background: transparent; border: 1px solid #000; box-shadow: none; }
  .shop-card .thumb{ object-fit:cover; border: none; margin: 0; padding: 0; box-sizing: border-box; display:block; border-radius: 8px; }
}

/* Make the grid two columns on small devices up to 500px width */
@media (max-width: 500px){
  .shop-grid{ grid-template-columns: repeat(2, 1fr); gap:12px; justify-content:stretch; }
  .product-wrap{ width:100%; max-width:100%; padding: 0; margin: 0; }
  .shop-card{ width:100%; margin: 0; }
  .shop-card .card-content{ padding:0; background: transparent; border: 1px solid #dad9cf3a; box-shadow: none; }
  .shop-card .thumb{ width: 100%; max-width: none; height:220px; border: none; margin: 0; padding: 0; box-sizing: border-box; object-fit:cover; display:block; border-radius: 8px 8px 0 0; }
  .shop-card .title{ font-size:11px; }
  .shop-card .price{ font-size:13px; }
  .shop-card .title{ letter-spacing:0.5px; }
  .product-wrap{ gap:6px; }
  .shop-head h1{ font-size:20px; }
  .product-wrap .btn-add{ width:100%; font-size:12px; padding:6px 10px; }
  /* Pull up the add-to-cart button slightly for a compact mobile layout */
  .product-wrap .btn-add{ margin-top: -17px;margin-bottom: 15px; }
  .shop-head{ gap:12px; }
  .shop-head .filters select{ min-width: 140px; }
  /* Prevent iOS zoom on focus (make search at least 16px) */
  #search{ font-size:16px; }
}

/* Reduce Add to Cart button size slightly on very small phones to match compact layout */
@media (max-width: 420px) {
  .product-wrap .btn-add{ font-size:12px; padding:8px 10px; }
}

/* For small screens: stack the filters vertically and make selects responsive */
@media (max-width: 640px){
  .shop-head .filters{ margin-left:0; width:100%; gap:8px; flex-direction:column; align-items:flex-start; margin-top:8px; }
  .shop-head .filters label{ width:100%; justify-content:flex-start; flex-direction:column; align-items:flex-start; gap:6px; }
  /* Make the selects expand to the container width and remove desktop min-width so they don't overflow */
  .shop-head .filters select{ width:100%; min-width:0; max-width:100%; }
  /* Remove the extra right margin on the desktop-only Sort select for compact mobile layout */
  .shop-head .filters select#sortSelect{ margin-right:0; }
}

/* Revert to single-column on ultra-small phones to avoid cramped two-column layout */
@media (max-width: 360px){
  .shop-grid{ grid-template-columns: 1fr; gap:12px; }
  .product-wrap{ gap:8px; }
  .shop-card .card-content{ background: transparent; border: 1px solid #000; box-shadow: none; }
  .shop-card .thumb{ width: 100%; max-width: none; height:180px; border: none; margin: 0; padding: 0; box-sizing: border-box; object-fit:cover; display:block; border-radius: 8px 8px 0 0; }
  .shop-card .title{ font-size:12px; }
  .product-wrap .btn-add{ width:100%; }
}

/* Shop-page specific mobile footer overrides */
@media (max-width: 640px){
  .site-footer{ display:flex; flex-direction:column; gap:0; padding-top:18px; }
  .site-footer > .brand{ margin: 0 auto 8px auto; display:flex; justify-content:center; }
  .site-footer > .brand .logo img{ width:120px; height:auto; display:block; }
  .site-footer .container.footer-top{ display:flex; flex-direction:column; gap:16px; padding: 8px 16px 0 16px; align-items:stretch; }

  /* Socials centered directly beneath the logo */
  .site-footer .footer-right{ order:1; width:100%; display:flex; justify-content:center; align-items:center; padding:0 0 8px 0; }
  .site-footer .socials{ justify-content:center; gap:12px; }

  /* Divider and columns stacked vertically */
  .site-footer .footer-columns{ order:2; display:flex; flex-direction:column; gap: 18px; border-top: 1px solid rgba(255,255,255,0.04); padding-top: 18px; }
  .site-footer .footer-col{ width:100%; }
  .site-footer .footer-col.contact{ order:1; }
  .site-footer .footer-col.links{ order:2; }
  .site-footer .footer-col.sublinks{ order:3; }

  /* Contact list layout with small icon circles */
  .site-footer .footer-col.contact ul{ padding-left:0; }
  .site-footer .footer-col.contact ul li{ display:flex; align-items:flex-start; gap:12px; margin-bottom:12px; }
  .site-footer .footer-col .icon{ display:inline-flex; align-items:center; justify-content:center; min-width:30px; height:30px; font-size:16px; background: rgba(255,255,255,0.02); border-radius:50%; padding:6px; }
  .site-footer .footer-col h4{ margin-bottom:10px; }

  /* Center bottom-inner */
  .site-footer-bottom .bottom-inner{ justify-content:center; gap:8px; padding:12px 16px; }
  .site-footer-bottom .bottom-inner > div{ text-align:center; width:100%; }
}

/* Mobile-specific: make the "made-with" text smaller with horizontal padding */
@media (max-width: 640px) {
  .site-footer-bottom .made-with{
    font-size: 12px; /* slightly smaller on mobile */
    padding-left: 14px;
    padding-right: 14px;
    line-height: 1.2; /* keep it compact */
    display: inline-block; /* contain padding while preserving layout */
    max-width: 100%;
    box-sizing: border-box;
    word-break: break-word; /* ensure long text wraps nicely */
  }
}

/* On very small phones (<= 500px) place footer logo to the left */
@media (max-width: 500px){
  .site-footer > .brand{
    margin-left: 16px !important;
    margin-right: 0 !important;
    display:flex;
    justify-content: flex-start !important;
  }
  .site-footer > .brand .logo img{
    width: 100px;
    height: auto;
    display: block;
  }
  /* nudge socials slightly left to align with logo when needed */
  .site-footer .footer-right{
    justify-content: flex-start !important;
    padding-left: 16px;
  }
  /* additional tweak for very small phones: make made-with text slightly smaller */
  .site-footer-bottom .made-with{ font-size:11px; padding-left: 12px; padding-right: 12px; }
}

/* Search autocomplete dropdown for shop page */
.search-results{
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: none;
}

.search-results.show{
  display: block;
}

.search-results .result-item{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

.search-results .result-item:hover,
.search-results .result-item.active{
  background-color: #f5f5f5;
}

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

.search-results .result-item-content{
  flex: 1;
  min-width: 0;
}

.search-results .result-item-title{
  font-size: 13px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-results .result-item-price{
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}

/* Blinking border animation for highlighted product */
@keyframes blink-border {
  0%, 100% {
    border: 2px solid transparent;
  }
  50% {
    border: 2px solid #ffae00;
  }
}

.product-wrap.highlight-product {
  animation: blink-border 0.6s ease-in-out 4;
}

/* ============================================================================
   ENHANCED FOOTER STYLING FOR DESKTOP MODE (shop.html)
   ============================================================================ */

/* Desktop: Footer should have premium spacing and layout */
@media (min-width: 1001px) {
  .site-footer-modern {
    padding: 80px 60px 32px;
    background: linear-gradient(180deg, #0b0b0b 0%, #0f0f0f 100%);
    margin-top: 15px;
  }

  /* Premium grid layout for desktop with proper alignment */
  .footer-grid {
    grid-template-columns: 1.3fr 0.9fr 0.9fr 1.5fr;
    gap: 64px;
    align-items: flex-start;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Brand section - enhanced for desktop */
  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .footer-brand .logo img {
    width: 180px;
    height: auto;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
  }

  .footer-brand .logo img:hover {
    transform: scale(1.02);
  }

  .footer-brand .brand-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    max-width: 300px;
    letter-spacing: 0.3px;
    font-weight: 300;
  }

  /* Enhanced social icons for desktop */
  .footer-brand .footer-socials {
    display: flex !important;
    gap: 20px;
    margin-top: 28px;
    align-items: center;
  }

  .footer-brand .footer-socials .social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
  }

  .footer-brand .footer-socials .social::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 213, 74, 0.15), rgba(255, 213, 74, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .footer-brand .footer-socials .social:hover::before {
    opacity: 1;
  }

  .footer-brand .footer-socials .social:hover {
    /* keep a subtle neutral hover, let footer.css control the final look */
    background: transparent;
    border-color: rgba(255, 255, 255, 0.06);
    transform: none;
    box-shadow: none;
  }

  .footer-brand .footer-socials .social img,
  .footer-brand .footer-socials .social lottie-player {
    width: auto; /* allow HTML attribute sizes (e.g., 36px) */
    height: auto;
    max-width: 36px;
    max-height: 36px;
    display: block;
    position: relative;
    z-index: 1;
  }

  /* Footer links - desktop layout */
  .footer-links {
    display: flex !important;
    gap: 72px;
    flex-wrap: wrap;
  }

  .footer-links .col {
    min-width: 140px;
    flex: 0 0 auto;
    margin-left: 30px;
    margin-right: 30px;
  }

  .footer-links h4 {
    font-size: 14px;
    letter-spacing: 2.2px;
    margin-bottom: 24px;
    color: #fff;
    opacity: 0.98;
    font-weight: 700;
    text-transform: uppercase;
  }

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

  .footer-links .col li {
    margin-bottom: 16px;
  }

  .footer-links .col a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
    display: inline-block;
    padding-bottom: 3px;
    font-weight: 300;
    text-transform: capitalize;
  }

  .footer-links .col a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .footer-links .col a:hover,
  .footer-links .col a:focus {
    color: var(--accent-yellow);
  }

  .footer-links .col a:hover::after,
  .footer-links .col a:focus::after {
    width: 100%;
  }

  /* Newsletter section - desktop enhanced */
  .footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
  }

  .footer-newsletter h4 {
    font-size: 14px;
    letter-spacing: 2.2px;
    margin-bottom: 12px;
    opacity: 0.98;
  }

  .footer-newsletter .small {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    letter-spacing: 0.2px;
    max-width: 100%;
    font-weight: 300;
    text-transform: capitalize;
  }

  .newsletter-form {
    display: flex;
    gap: 12px;
    align-items: stretch;
    margin-top: 16px;
    width: 100%;
  }

  .newsletter-form input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 14px 18px;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.45);
  }

  .newsletter-form input[type="email"]:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 213, 74, 0.3);
    box-shadow: 0 0 0 3px rgba(255, 213, 74, 0.08);
  }

  .newsletter-form .btn-subscribe {
    background: #22c55e;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    letter-spacing: 0.5px;
    white-space: nowrap;
  }

  .newsletter-form .btn-subscribe:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.25);
  }

  .newsletter-form .btn-subscribe:active {
    transform: translateY(0);
  }

  .newsletter-form .btn-subscribe:disabled {
    opacity: 0.9;
    cursor: not-allowed;
  }

  .newsletter-form .btn-subscribe.btn-subscribed {
    background: #4caf50;
    color: #fff;
  }

  /* Contact info - desktop layout */
  .footer-contact {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .footer-contact .contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.5;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 300;
    text-transform: capitalize;
  }

  .footer-contact .contact-item:last-child {
    border-bottom: none;
  }

  .footer-contact .icon {
    min-width: 24px;
    text-align: center;
    font-size: 18px;
  }

  .footer-contact a {
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
    transition: all 0.25s ease;
    border-bottom: 1px solid transparent;
  }

  .footer-contact a:hover {
    color: var(--footer-accent);
    border-bottom-color: var(--footer-accent);
  }

  /* Bottom bar - desktop premium look */
  .site-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 56px;
    padding-top: 32px;
    padding-bottom: 28px;
  }

  .site-footer-bottom .bottom-inner {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }

  .footer-meta {
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: center;
  }

  .footer-meta a {
    color: rgba(255, 255, 255, 0.66);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.25s ease;
    position: relative;
    padding-bottom: 2px;
    font-weight: 300;
    text-transform: capitalize;
  }

  .footer-meta a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent-yellow);
    transition: width 0.3s ease;
  }

  .footer-meta a:hover,
  .footer-meta a:focus {
    color: var(--accent-yellow);
  }

  .footer-meta a:hover::after,
  .footer-meta a:focus::after {
    width: 100%;
  }

  .copyright {
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.2px;
  }

  .made-with {
    display: flex;
    gap: 16px;
    align-items: center;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
  }

  .byund {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    transition: color 0.25s ease;
  }

  .byund img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
  }

  .reach-us-btn {
    margin-left: 16px;
    padding: 10px 20px;
    border-radius: 6px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  .reach-us-btn:hover {
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
    background: rgba(255, 213, 74, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 213, 74, 0.15);
  }

  /* Hide mobile-specific footer elements on desktop */
  .footer-socials-mobile,
  .footer-links-mobile {
    display: none !important;
  }

  .footer-brand .footer-socials {
    display: flex !important;
  }

  .footer-links {
    display: flex !important;
  }
}

/* Tablet adjustments (1000px and below, but larger than mobile) */
@media (max-width: 1000px) and (min-width: 641px) {
  .site-footer-modern {
    padding: 48px 32px 20px;
    margin-top: 60px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-newsletter {
    grid-column: span 2;
    order: 3;
  }

  .footer-links {
    gap: 36px;
  }

  .footer-brand .footer-socials {
    gap: 14px;
  }

  .site-footer-bottom .bottom-inner {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-meta {
    gap: 24px;
    width: 100%;
    justify-content: center;
  }

  .made-with {
    width: 100%;
    justify-content: center;
  }
}

