/* ==========================================================================
   SRIRAGA CREATIONS - Luxury South Indian Ethnic Fashion Portfolio & Showcase
   Color Palette derived from Logo:
   - Peacock Emerald Teal, Royal Peacock Blue, Antique Gold/Brass, Warm Pearl
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand Palette from Logo */
  --teal-primary: #083b3b;
  --teal-dark: #042424;
  --teal-light: #0d5454;
  --teal-surface: #0a4443;
  --teal-soft: #edf6f5;

  --peacock-blue: #0e4b75;
  --peacock-blue-light: #18659b;
  --peacock-blue-soft: #eaf3fa;

  --gold-primary: #c5a059;
  --gold-light: #dfb96e;
  --gold-bright: #f0cb7d;
  --gold-dark: #946e24;
  --gold-gradient: linear-gradient(135deg, #c5a059 0%, #f3d48d 50%, #946e24 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(197,160,89,0.15) 0%, rgba(243,212,141,0.08) 100%);
  --teal-gold-gradient: linear-gradient(135deg, #042424 0%, #083b3b 60%, #0e4b75 100%);

  --pearl-bg: #fdfbf7;
  --pearl-subtle: #f7f3e9;
  --cream-card: #ffffff;
  --surface-muted: #f2eee3;

  --text-main: #192422;
  --text-muted: #576865;
  --text-light: #899b98;
  --text-on-dark: #fcfbf7;

  --border-subtle: rgba(197, 160, 89, 0.22);
  --border-focus: #c5a059;
  --border-light: #e8e3d5;

  --shadow-sm: 0 2px 8px rgba(4, 36, 36, 0.06);
  --shadow-md: 0 8px 24px rgba(4, 36, 36, 0.1);
  --shadow-lg: 0 16px 40px rgba(4, 36, 36, 0.16);
  --shadow-gold: 0 6px 20px rgba(197, 160, 89, 0.25);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-display: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--pearl-bg);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--teal-primary);
  line-height: 1.25;
}

.font-display {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
}

.text-gold {
  color: var(--gold-primary);
}

.text-teal {
  color: var(--teal-primary);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-subtitle {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.section-subtitle::before,
.section-subtitle::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: var(--gold-primary);
}

.section-title {
  font-size: 2.5rem;
  color: var(--teal-primary);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Buttons & Badges */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-xs);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--teal-primary);
  color: var(--pearl-bg);
  border: 1px solid var(--teal-primary);
}

.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--teal-dark);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
  filter: brightness(1.05);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-primary);
  border: 1.5px solid var(--gold-primary);
}

.btn-outline-gold:hover {
  background: var(--gold-primary);
  color: var(--teal-dark);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

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

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1eb956;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.78rem;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 0.95rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-xs);
}

.badge-gold {
  background: var(--gold-gradient);
  color: var(--teal-dark);
}

.badge-silkmark {
  background: #042424;
  color: #dfb96e;
  border: 1px solid rgba(223, 185, 110, 0.4);
}

.badge-new {
  background: var(--peacock-blue);
  color: #ffffff;
}

/* ==========================================================================
   Header & Announcement Bar
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(4, 36, 36, 0.08);
}

.announcement-bar {
  background: var(--teal-dark);
  color: var(--gold-light);
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
}

.announcement-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.announcement-ticker {
  display: flex;
  align-items: center;
  gap: 16px;
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.03em;
}

.announcement-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-link {
  color: var(--gold-light);
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.top-link:hover {
  color: #ffffff;
}

.main-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.header-left {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-box-header {
  position: relative;
  width: 100%;
  max-width: 320px;
}

.search-input-header {
  width: 100%;
  padding: 10px 42px 10px 16px;
  background: var(--pearl-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--teal-primary);
  outline: none;
  cursor: pointer;
}

.search-btn-header {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-primary);
}

.brand-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
}

.brand-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--teal-primary);
  line-height: 1.1;
}

.brand-tagline {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--gold-primary);
  text-transform: uppercase;
}

.header-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.header-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--teal-primary);
  font-size: 0.75rem;
  font-weight: 600;
  gap: 3px;
  position: relative;
  transition: color var(--transition-fast);
}

.header-action-btn:hover {
  color: var(--gold-primary);
}

.action-count-badge {
  position: absolute;
  top: -4px;
  right: 4px;
  background: var(--gold-gradient);
  color: var(--teal-dark);
  font-size: 0.68rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.6rem;
  color: var(--teal-primary);
}

/* ==========================================================================
   Navigation Bar & Fixed-Container Mega Menus
   (Fix: Never cut off at left or right edge!)
   ========================================================================== */

.nav-bar-row {
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  position: static;
}

.nav-item {
  position: static; /* Allows full container mega-menus without left-cutoff! */
  padding: 12px 0;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-smooth);
}

.nav-item:hover .nav-link,
.nav-link.active {
  color: var(--gold-dark);
}

.nav-item:hover .nav-link::after,
.nav-link.active::after {
  width: 100%;
}

.nav-badge-hot {
  font-size: 0.62rem;
  background: #b91c1c;
  color: #ffffff;
  padding: 1px 5px;
  border-radius: 3px;
  text-transform: uppercase;
  font-weight: 700;
}

/* Robust Mega Menu (Centered to site header, bounded inside 1240px container) */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(100% - 48px);
  max-width: 1240px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-top: 2px solid var(--gold-primary);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: 0 20px 50px rgba(4, 36, 36, 0.18);
  padding: 32px 36px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
  z-index: 999;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-grid-5col {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 260px;
  gap: 28px;
}

.mega-menu-grid-4col {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 260px;
  gap: 28px;
}

.mega-col-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--teal-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 1.5px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mega-menu-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-menu-list a {
  font-size: 0.86rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-fast);
}

.mega-menu-list a:hover {
  color: var(--gold-dark);
  transform: translateX(4px);
  font-weight: 600;
}

.mega-promo-card {
  background: var(--teal-gold-gradient);
  border-radius: var(--radius-xs);
  overflow: hidden;
  color: #ffffff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mega-promo-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-xs);
  margin-bottom: 10px;
  border: 1px solid rgba(197, 160, 89, 0.4);
}

.mega-promo-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-bright);
  margin-bottom: 4px;
}

/* ==========================================================================
   Hero Slider Section
   ========================================================================== */

.hero-slider-section {
  position: relative;
  width: 100%;
  height: 560px;
  background: var(--teal-dark);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.04);
  transition: transform 7s ease-out;
}

.hero-slide.active .hero-bg-img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(4, 36, 36, 0.92) 0%,
    rgba(4, 36, 36, 0.62) 48%,
    rgba(4, 36, 36, 0.18) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 680px;
  color: #ffffff;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-bright);
  text-transform: uppercase;
  margin-bottom: 14px;
  background: rgba(197, 160, 89, 0.18);
  border: 1px solid rgba(197, 160, 89, 0.4);
  padding: 5px 12px;
  border-radius: var(--radius-xs);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.3rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-title span {
  color: var(--gold-light);
  font-style: italic;
}

.hero-desc {
  font-size: 1.05rem;
  color: #e5edea;
  line-height: 1.6;
  margin-bottom: 28px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: all var(--transition-fast);
}

.slider-arrow:hover {
  background: var(--gold-primary);
  color: var(--teal-dark);
}

.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.slider-dot.active {
  width: 32px;
  border-radius: 8px;
  background: var(--gold-gradient);
  border-color: var(--gold-primary);
}

/* Trust Bar */
.trust-features-bar {
  background: #ffffff;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  border-right: 1px solid var(--border-subtle);
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pearl-subtle);
  border: 1px solid var(--border-subtle);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.trust-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--teal-primary);
  margin-bottom: 2px;
}

.trust-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Category Circles */
.category-visual-section {
  padding: 70px 0;
  background: var(--pearl-bg);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.cat-card-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cat-circle-img-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
  border: 3px solid var(--gold-primary);
  padding: 3px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.cat-circle-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform var(--transition-smooth);
}

.cat-card-circle:hover .cat-circle-img-wrap {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.cat-card-circle:hover .cat-circle-img-wrap img {
  transform: scale(1.1);
}

.cat-circle-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--teal-primary);
  margin-bottom: 2px;
}

.cat-circle-count {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Showcase Section */
.showcase-section {
  padding: 80px 0;
  background: #ffffff;
}

.tab-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 9px 22px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-full);
  background: transparent;
  transition: all var(--transition-fast);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--teal-primary);
  border-color: var(--teal-primary);
  color: var(--gold-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Footer */
.site-footer {
  background: #031b1b;
  color: #e2e8f0;
  padding: 70px 0 30px;
  border-top: 2px solid var(--gold-primary);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr 1.2fr 1.2fr 1.6fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.footer-logo-img {
  height: 64px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--gold-primary);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-nav-list a {
  font-size: 0.85rem;
  color: #9ab0ad;
}

.footer-nav-list a:hover {
  color: var(--gold-bright);
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.8rem;
  color: #7b9490;
}

/* WhatsApp Floating */
.whatsapp-float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  background: #25d366;
  color: #ffffff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* Responsive */
@media (max-width: 1200px) {
  .mega-menu-grid-5col {
    grid-template-columns: repeat(3, 1fr) 1fr;
  }
}

@media (max-width: 992px) {
  .nav-bar-row {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .announcement-right {
    display: none;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
}
