      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Inter", "Arial", sans-serif;
        background-color: #0a0a0a;
        color: #ffffff;
        line-height: 1.6;
        overflow-x: hidden;
      }

      .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
      }

      /* Categories Section */
      .categories-section {
        background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
        padding: 140px 0 80px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .categories-section::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(
          circle,
          rgba(212, 175, 55, 0.15) 0%,
          transparent 50%
        );
        z-index: 0;
        animation: pulse 10s infinite;
      }

      @keyframes pulse {
        0% {
          transform: scale(1);
          opacity: 0.15;
        }
        50% {
          transform: scale(1.2);
          opacity: 0.1;
        }
        100% {
          transform: scale(1);
          opacity: 0.15;
        }
      }

      .categories-title {
        font-size: 60px;
        font-weight: 900;
        margin-bottom: 20px;
        letter-spacing: 4px;
        color: #d4af37;
        text-transform: uppercase;
        position: relative;
        z-index: 1;
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
        animation: fadeInDown 1s ease-out;
      }

      .categories-subtitle {
        color: #e0e0e0;
        font-size: 18px;
        margin-bottom: 50px;
        position: relative;
        z-index: 1;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        animation: fadeInUp 1s ease-out;
      }

      @keyframes fadeInDown {
        from {
          opacity: 0;
          transform: translateY(-20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Category Section */
      .category-section {
        margin-bottom: 80px;
      }

      .category-heading {
        font-size: 32px;
        font-weight: 700;
        color: #d4af37;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 40px;
        text-align: left;
        position: relative;
        z-index: 1;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      }

      /* Collections Grid Layout (Adapted from Home) */
      .collections-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
        margin-bottom: 60px;
      }

      .collection-item {
        position: relative;
        height: 400px;
        border-radius: 10px;
        overflow: hidden;
        cursor: pointer;
        transition: transform 0.3s ease;
      }

      .collection-item:hover {
        transform: translateY(-10px);
      }

      .collection-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .collection-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        padding: 30px 20px 20px;
        text-align: center;
      }

      .collection-overlay h3 {
        font-size: 24px;
        margin-bottom: 10px;
        color: #d4af37;
        text-transform: uppercase;
        font-weight: bold;
      }

      /* Offer Carousel Styles */
      .offers-carousel-container {
        position: relative;
        width: 100%;
        padding: 0 50px; /* Space for arrows */
      }

      .offers-carousel-track-viewport {
          overflow: hidden;
          width: 100%;
          border-radius: 10px; /* Optional rounded corners for the viewport */
      }

      .offers-carousel-track {
        display: flex;
        transition: transform 0.5s ease;
        width: 100%;
      }

      .offers-carousel-item {
         flex: 0 0 33.333%; /* 3 items visible by default */
         padding: 0 15px; /* Gap between items */
         box-sizing: border-box;
      }
      
      /* Reset A tag defaults for carousel item wrapper */
      .offers-carousel-item a {
          text-decoration: none;
          color: inherit;
          display: block;
          height: 100%;
      }

      .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.7);
        color: #d4af37;
        border: 1px solid #d4af37;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        transition: all 0.3s ease;
      }

      .carousel-btn:hover {
        background: #d4af37;
        color: #000;
        transform: translateY(-50%) scale(1.1);
      }

      .carousel-btn.prev {
        left: 0;
      }

      .carousel-btn.next {
        right: 0;
      }
      
      /* Use the new product card styles for offers specifically inside the carousel if needed */
      .offers-carousel-item .product-item {
          border: 1px solid rgba(212, 175, 55, 0.2); 
          background: #111;
          border-radius: 10px;
          overflow: hidden;
          position: relative;
          height: 400px; /* Match height of collection items roughly */
          display: flex; 
          flex-direction: column;
      }
      
      .offers-carousel-item .product-image {
          height: 70%;
          object-fit: cover;
          width: 100%;
      }
      
      .offers-carousel-item .product-info {
           padding: 15px;
           text-align: center;
           background: linear-gradient(to bottom, #111, #000);
           height: 30%;
           display: flex;
           flex-direction: column;
           justify-content: center;
      }

      @media (max-width: 992px) {
        .offers-carousel-item {
          flex: 0 0 50%; /* 2 items on tablet */
        }
      }

      @media (max-width: 600px) {
        .offers-carousel-item {
           flex: 0 0 100%; /* 1 item on mobile */
        }
        .offers-carousel-container {
            padding: 0; /* Arrows overlay or removed/styled differently */
        }
        .carousel-btn {
            background: rgba(0,0,0,0.5);
        }
      }

      /* Responsive adjustments for the new grid */
      @media (max-width: 768px) {
        .collections-grid {
          grid-template-columns: 1fr;
        }
        .categories-title {
           font-size: 36px;
        }
      }
