/* ==========================================================================
   L'Aube Avenue - Top Page Styles
   ========================================================================== */

/* Bootstrap 5 (CDN) - Loaded first, then customized */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css');

/* Site base styles - loaded after Bootstrap to override defaults */
@import url('base.css');

/* ==========================================================================
   Announcement Bar
   ========================================================================== */
.announcement-bar {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 8px 15px;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.announcement-bar a {
  color: #fff;
  text-decoration: underline;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.header-logo {
  font-family: var(--font-family-heading);
  font-size: 28px;
  letter-spacing: 0.15em;
  color: var(--color-text);
}

.header-logo a {
  color: inherit;
}

.header-logo span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  font-family: var(--font-family-base);
}

.header-search {
  flex: 1;
  max-width: 300px;
  margin: 0 30px;
}

.header-search input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid var(--color-border);
  font-size: 13px;
  outline: none;
}

.header-search input:focus {
  border-color: var(--color-primary);
}

.header-icons {
  display: flex;
  gap: 20px;
}

.header-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 10px;
  color: var(--color-text-light);
}

.header-icon i {
  font-size: 20px;
  margin-bottom: 3px;
}

/* Navigation */
.global-nav {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-light);
}

.nav-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 12px 0;
}

.nav-list a {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--color-text);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-list a:hover::after {
  width: 100%;
}

.nav-list a.sale {
  color: var(--color-sale);
}

/* Mobile Header */
.mobile-header {
  display: none;
}

.hamburger {
  width: 24px;
  height: 20px;
  position: relative;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  position: absolute;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9px;
}

/* Side Drawer */
.side-drawer {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background: var(--color-bg);
  z-index: 2000;
  transition: left 0.3s ease;
  overflow-y: auto;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.side-drawer.open {
  left: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  padding: 20px;
  border-bottom: 1px solid var(--color-border);
}

.drawer-close {
  font-size: 24px;
  cursor: pointer;
}

.drawer-nav {
  padding: 20px;
}

.drawer-nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 14px;
}

/* ==========================================================================
   Main Visual (Hero) - Center Mode Carousel
   ========================================================================== */
.main-visual {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-light);
  padding: 20px 0;
}

.main-slider {
  margin: 0 -10%;
}

.main-slider .slide {
  position: relative;
  padding: 0 10px;
  transition: opacity 0.3s ease;
}

.main-slider .slide:not(.slick-center) {
  opacity: 0.5;
}

.main-slider .slide img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Slick Customization */
.main-slider .slick-track {
  display: flex;
  align-items: center;
}

.main-slider .slick-slide {
  transition: transform 0.3s ease;
}

.main-slider .slick-center {
  transform: scale(1.02);
}

.main-slider .slick-dots {
  bottom: -25px;
}

.main-slider .slick-dots li button:before {
  font-size: 10px;
  color: var(--color-primary);
  opacity: 0.3;
}

.main-slider .slick-dots li.slick-active button:before {
  opacity: 1;
}

.main-slider .slick-prev,
.main-slider .slick-next {
  z-index: 10;
  width: 40px;
  height: 40px;
}

.main-slider .slick-prev {
  left: 12%;
}

.main-slider .slick-next {
  right: 12%;
}

.main-slider .slick-prev:before,
.main-slider .slick-next:before {
  font-size: 30px;
  color: var(--color-text);
  opacity: 0.5;
}

.main-slider .slick-prev:hover:before,
.main-slider .slick-next:hover:before {
  opacity: 1;
}

/* ==========================================================================
   Trending Keywords
   ========================================================================== */
.trending-keywords {
  background: var(--color-bg);
  padding: 15px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.keywords-inner {
  display: flex;
  align-items: center;
  gap: 15px;
}

.keywords-label {
  font-size: 12px;
  font-weight: bold;
  color: var(--color-sale);
  white-space: nowrap;
}

.keywords-label i {
  margin-right: 3px;
}

.keywords-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.keyword-tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--color-text);
  background: var(--color-bg-light);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.keyword-tag:hover {
  background: var(--color-primary);
  color: #fff;
}

.keyword-tag.is-hot {
  background: var(--color-bg);
  border: 1px solid var(--color-sale);
  color: var(--color-sale);
}

.keyword-tag.is-hot:hover {
  background: var(--color-sale);
  color: #fff;
}

/* ==========================================================================
   Page Layout with Sidebar
   ========================================================================== */
.page-layout {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.category-sidebar {
  width: 240px;
  flex-shrink: 0;
  padding: 30px 0;
  padding-right: 20px;
}

.sidebar-title {
  font-family: var(--font-family-heading);
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.sidebar-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-category-item {
  margin-bottom: 5px;
}

.sidebar-category-link {
  display: flex;
  align-items: center;
  padding: 10px 10px;
  font-size: 13px;
  font-weight: bold;
  color: var(--color-text);
  transition: all 0.3s ease;
}

.sidebar-category-link:hover {
  color: var(--color-primary);
}

.sidebar-category-link i {
  width: 24px;
  margin-right: 10px;
  font-size: 16px;
  color: var(--color-text-muted);
}

.sidebar-category-link:hover i {
  color: var(--color-primary);
}

.sidebar-subcategory-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}

.sidebar-subcategory-list li {
  /* no styling */
}

.sidebar-subcategory-list a {
  display: block;
  padding: 6px 10px 6px 34px;
  font-size: 12px;
  color: var(--color-text-light);
  transition: all 0.3s ease;
}

.sidebar-subcategory-list a:hover {
  color: var(--color-primary);
  background: var(--color-bg-light);
}

.sidebar-banner {
  margin-top: 20px;
}

.sidebar-banner img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.sidebar-promo-banners {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.sidebar-promo-banners:last-child {
  margin-bottom: 0;
  margin-top: 20px;
}

.sidebar-promo-item {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.sidebar-promo-item:hover {
  opacity: 0.85;
}

.sidebar-promo-item img {
  width: 100%;
  height: auto;
  display: block;
}

.main-content {
  flex: 1;
  min-width: 0;
}

/* Drawer Category (Mobile) */
.drawer-category {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border-light);
}

.drawer-category-title {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.drawer-category-group {
  border-bottom: 1px solid var(--color-border-light);
}

.drawer-category-parent {
  display: flex;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
  font-weight: bold;
}

.drawer-category-parent i:first-child {
  width: 24px;
  margin-right: 10px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.drawer-toggle-icon {
  margin-left: auto;
  font-size: 10px;
  color: var(--color-text-muted);
  transition: transform 0.3s ease;
}

.drawer-category-group.open .drawer-toggle-icon {
  transform: rotate(180deg);
}

.drawer-subcategory-list {
  display: none;
  padding-bottom: 10px;
}

.drawer-category-group.open .drawer-subcategory-list {
  display: block;
}

.drawer-subcategory-list a {
  display: block;
  padding: 8px 0 8px 34px;
  font-size: 13px;
  color: var(--color-text-light);
}

.drawer-subcategory-list a:hover {
  color: var(--color-primary);
}

/* Drawer Promo Banners */
.drawer-promo-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 15px 0;
  margin: 0 -5px;
}

.drawer-promo-item {
  display: block;
  border-radius: 6px;
  overflow: hidden;
}

.drawer-promo-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.2s ease;
}

.drawer-promo-item:hover img {
  opacity: 0.85;
}

/* ==========================================================================
   Recommend Section
   ========================================================================== */
.recommend-section {
  padding: 50px 0;
  background: var(--color-bg);
}

.recommend-slider {
  margin: 0 -5px;
}

.recommend-slider .slick-slide {
  padding: 0 5px;
}

.recommend-slider .slick-prev,
.recommend-slider .slick-next {
  z-index: 10;
  width: 30px;
  height: 30px;
}

.recommend-slider .slick-prev {
  left: -15px;
}

.recommend-slider .slick-next {
  right: -15px;
}

.recommend-slider .slick-prev:before,
.recommend-slider .slick-next:before {
  font-size: 24px;
  color: var(--color-text);
  opacity: 0.5;
}

/* ==========================================================================
   Pickup Section
   ========================================================================== */
.pickup-section {
  padding: 50px 0;
  background: var(--color-bg);
}

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

.pickup-item {
  position: relative;
  overflow: hidden;
}

.pickup-item img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.pickup-item:hover img {
  transform: scale(1.05);
}

.pickup-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 10px;
  font-size: 12px;
}

/* ==========================================================================
   Magazine Section
   ========================================================================== */
.magazine-section {
  padding: 50px 0;
  background: var(--color-bg);
}

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

.magazine-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.magazine-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.magazine-card-image {
  position: relative;
  aspect-ratio: 792 / 589;
  overflow: hidden;
}

.magazine-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.magazine-card:hover .magazine-card-image img {
  transform: scale(1.05);
}

.magazine-card-content {
  padding: 15px;
}

.magazine-card-category {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.magazine-card-subtitle {
  font-size: 12px;
  color: var(--color-text-light);
  margin: 0 0 5px;
  line-height: 1.5;
}

.magazine-card-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  margin: 0 0 10px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.magazine-card-date {
  font-size: 11px;
  color: var(--color-text-light);
}

/* ==========================================================================
   Product Section (New Arrivals, Ranking)
   ========================================================================== */
.product-section {
  padding: 50px 0;
}

.product-section.bg-light {
  background: var(--color-bg-light);
}

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

.product-card {
  background: var(--color-bg);
}

.product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
}

.product-card-favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-card-favorite {
  opacity: 1;
}

.product-card-info {
  padding: 15px 10px;
}

.product-card-brand {
  font-size: 10px;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.product-card-name {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-price {
  font-size: 14px;
  font-weight: bold;
}

/* Ranking specific */
.ranking-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.ranking-badge.rank-1 { background: #D4AF37; }
.ranking-badge.rank-2 { background: #A8A8A8; }
.ranking-badge.rank-3 { background: #CD7F32; }

/* Tab Navigation */
.tab-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.tab-nav button {
  background: none;
  border: none;
  font-size: 14px;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 10px 0;
  position: relative;
}

.tab-nav button.active {
  color: var(--color-text);
}

.tab-nav button.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
}

/* ==========================================================================
   Brand Section
   ========================================================================== */
.brand-section {
  padding: 50px 0;
  background: var(--color-bg-light);
}

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

.brand-card {
  background: var(--color-bg);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--color-border-light);
  transition: all 0.3s ease;
}

.brand-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-color: var(--color-primary);
}

.brand-card img {
  width: 100%;
  max-width: 120px;
  height: auto;
  margin-bottom: 10px;
}

.brand-card .name {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 3px;
}

.brand-card .name-ja {
  font-size: 11px;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Styling Section
   ========================================================================== */
.styling-section {
  padding: 50px 0;
}

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

.styling-card {
  background: var(--color-bg);
}

.styling-card-image {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.styling-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.styling-card:hover .styling-card-image img {
  transform: scale(1.05);
}

.styling-card-info {
  padding: 15px 10px;
}

.styling-card-staff {
  font-size: 12px;
  margin-bottom: 5px;
}

.styling-card-staff span {
  color: var(--color-text-muted);
}

.styling-card-comment {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================================================
   News Section
   ========================================================================== */
.news-section {
  padding: 50px 0;
  background: var(--color-bg-light);
}

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

.news-card {
  background: var(--color-bg);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.news-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.news-card-image {
  aspect-ratio: 400/296;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-content {
  padding: 15px;
}

.news-card .news-date {
  font-size: 11px;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 5px;
}

.news-card .news-title {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================================================
   Instagram Section
   ========================================================================== */
.instagram-section {
  padding: 50px 0;
  background: var(--color-bg);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.instagram-overlay span {
  color: #fff;
  font-size: 14px;
}

.instagram-overlay i {
  margin-right: 5px;
}

.instagram-follow {
  text-align: center;
  margin-top: 30px;
}

.instagram-follow .btn i {
  margin-right: 8px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #333;
  color: #fff;
  padding-top: 50px;
}

/* Footer uses Bootstrap row/col, custom styling applied here */
.footer-main {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  --bs-gutter-x: 40px;
  --bs-gutter-y: 30px;
}

.footer-column h4 {
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: #fff;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
}

.footer-column ul li a:hover {
  color: #fff;
}

.footer-sns {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-sns a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.footer-sns a:hover {
  background: rgba(255,255,255,0.1);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 11px;
}

.footer-copyright {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

/* ==========================================================================
   More Button
   ========================================================================== */
.more-btn-wrap {
  text-align: center;
  margin-top: 30px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991px) {
  .pickup-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .magazine-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .styling-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer responsive now handled by Bootstrap col-lg-3 col-md-6 */
}

@media (max-width: 767px) {
  /* Header Mobile */
  .header-inner {
    display: none;
  }

  .global-nav {
    display: none;
  }

  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
  }

  .mobile-logo {
    font-family: var(--font-family-heading);
    font-size: 20px;
    letter-spacing: 0.1em;
  }

  .mobile-icons {
    display: flex;
    gap: 15px;
  }

  .mobile-icons i {
    font-size: 20px;
  }

  /* Hide PC Sidebar on Mobile */
  .page-layout {
    display: block;
    padding: 0;
  }

  .category-sidebar {
    display: none;
  }

  .main-content {
    width: 100%;
  }

  /* Trending Keywords */
  .trending-keywords {
    padding: 12px 0;
    overflow-x: auto;
  }

  .keywords-inner {
    flex-wrap: nowrap;
    padding: 0 10px;
  }

  .keywords-list {
    flex-wrap: nowrap;
  }

  .keyword-tag {
    padding: 5px 12px;
    font-size: 11px;
    white-space: nowrap;
  }

  /* Sections */
  .pickup-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .magazine-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .magazine-card-content {
    padding: 12px;
  }

  .magazine-card-title {
    font-size: 13px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .styling-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .news-card {
    display: flex;
    align-items: center;
  }

  .news-card-image {
    width: 120px;
    flex-shrink: 0;
    aspect-ratio: 400/296;
  }

  .news-card-content {
    flex: 1;
    padding: 10px 15px;
  }

  /* Footer on mobile: Bootstrap col handles stacking, just adjust gutter */
  .footer-main {
    --bs-gutter-y: 20px;
  }

  .section-title {
    font-size: 20px;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }

  .instagram-overlay span {
    font-size: 12px;
  }

  .pickup-section,
  .magazine-section,
  .product-section,
  .brand-section,
  .styling-section,
  .news-section,
  .instagram-section {
    padding: 30px 0;
  }
}
