
    /* aribellas-fabrics->public->home.css */
    /* ** Reset default browser spacing ** */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* ** Body style ** */
    body {
      font-family: Georgia, "Times New Roman", serif;
      background: #ffffff;
      color: #2b2b2b;
    }

    /* ** Glassmorphism navbar container ** */
    header {
      width: calc(100% - 48px);
      height: 110px;
      margin: 24px;
      padding: 0 34px;

      display: flex;
      align-items: center;
      justify-content: space-between;

      position: sticky;
      top: 24px;
      z-index: 100;

      background: rgba(255, 255, 255, 0.55);
      border: 1px solid rgba(255, 255, 255, 0.7);
      border-radius: 28px;

      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);

      box-shadow:
        0 18px 45px rgba(44, 36, 52, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }

    /* ** Logo area ** */
    .logo img {
      width: 82px;
      height: 82px;
      object-fit: cover;
      border-radius: 18px;
      box-shadow: 0 10px 25px rgba(44, 36, 52, 0.1);
    }

    /* ** Center navigation position ** */
    nav {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    /* ** Glass navigation menu pill ** */
    nav ul {
      list-style: none;
      display: flex;
      gap: 8px;
      padding: 8px;

      border-radius: 999px;
      background: rgba(255, 255, 255, 0.38);
      border: 1px solid rgba(255, 255, 255, 0.65);

      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }

    /* ** Navigation links ** */
    nav a {
      text-decoration: none;
      color: #2c2434;
      font-size: 15px;
      padding: 10px 16px;
      border-radius: 999px;
      display: inline-block;
      transition: 0.3s ease;
    }

    /* ** Navigation hover effect ** */
    nav a:hover {
      color: #7b527c;
      background: rgba(123, 82, 124, 0.12);
    }

    /* ** Right icon area ** */
    .icons {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 18px;
      color: #2c2434;
    }

    /* ** Glass icon buttons ** */
    .icons > span {
      width: 42px;
      height: 42px;
      border-radius: 50%;

      display: flex;
      align-items: center;
      justify-content: center;

      background: rgba(255, 255, 255, 0.42);
      border: 1px solid rgba(255, 255, 255, 0.65);

      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);

      box-shadow: 0 8px 20px rgba(44, 36, 52, 0.08);
      cursor: pointer;
      transition: 0.3s ease;
    }

    /* ** Icon hover effect ** */
    .icons > span:hover {
      transform: translateY(-2px);
      background: rgba(255, 255, 255, 0.7);
    }

    /* ** Cart icon wrapper ** */
    .cart {
      position: relative;
    }

    /* ** Cart number badge ** */
    .cart span {
      position: absolute;
      top: -7px;
      right: -7px;

      background: rgba(123, 82, 124, 0.9);
      color: white;

      font-size: 11px;
      width: 18px;
      height: 18px;
      border-radius: 50%;

      display: flex;
      align-items: center;
      justify-content: center;

      font-family: Arial, sans-serif;
      border: 1px solid rgba(255, 255, 255, 0.75);
    }



    /* ** Collection grid layout ** */
    .collection-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
      padding: 0 40px 50px;
    }

    /* ** Collection image card ** */
    .collection-card {
      position: relative;
      height: 370px;
      overflow: hidden;
      cursor: pointer;
      background: #f3f0eb;
    }

    /* ** Collection card image ** */
    .collection-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
      filter: brightness(0.88);
    }

    /* ** Collection card hover zoom ** */
    .collection-card:hover img {
      transform: scale(1.05);
    }

    /* ** Soft white image overlay ** */
    .collection-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.12);
      transition: 0.3s ease;
    }

    .collection-card:hover::after {
      background: rgba(255, 255, 255, 0.02);
    }

    /* ** Text content inside image cards ** */
    /* .card-content {
      position: absolute;
      inset: 0;
      z-index: 2;

      display: flex;
      align-items: center;
      justify-content: center;

      text-align: center;
      padding: 30px;
    }

    /* ** Main card title ** */
    .card-content h2 {
      font-size: 60px;
      font-weight: 500;
      text-transform: uppercase;
      color: #f7f1e7;
      letter-spacing: 4px;
      text-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
    }

    /* ** Card subtitle ** */
    .card-content p {
      margin-top: 14px;
      font-size: 16px;
      letter-spacing: 6px;
      color: #f7f1e7;
      text-transform: lowercase;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    } */

    /* ** Fixed rewards button ** */
    .rewards {
      position: fixed;
      right: 25px;
      bottom: 25px;

      background: #7b527c;
      color: white;

      padding: 16px 24px;
      border-radius: 35px;

      display: flex;
      align-items: center;
      gap: 10px;

      font-family: Arial, sans-serif;
      font-weight: 600;

      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
      cursor: pointer;
      z-index: 200;
    }

    /* ** Tablet responsive layout ** */
    @media (max-width: 1000px) {
      .collection-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .card-content h2 {
        font-size: 44px;
      }
    }

    /* ** Mobile responsive layout ** */
    @media (max-width: 650px) {
      header {
        width: calc(100% - 28px);
        height: auto;
        margin: 14px;
        padding: 18px 22px;
        flex-direction: column;
        gap: 18px;
        top: 14px;
        border-radius: 24px;
      }

      nav {
        position: static;
        transform: none;
      }

      nav ul {
        gap: 4px;
      }

      nav a {
        font-size: 14px;
        padding: 9px 13px;
      }

      .icons {
        display: none;
      }

      .collection-grid {
        grid-template-columns: 1fr;
        padding: 0 22px 40px;
      }

      .collection-card {
        height: 280px;
      }

      .card-content h2 {
        font-size: 38px;
      }
    }
    /* Hero css */
        .hero-section {
        position: relative;
        width: 100%;
        height: 430px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        }

        /* Animated background image */
        .hero-bg {
        position: absolute;
        inset: -40px;
        background-image: url("img/herobg.png");
        background-size: cover;
        background-position: center;
        z-index: 1;

        animation: slowZoomMove 15s ease-in-out infinite alternate;
        will-change: transform;
        }

        /* Soft dark overlay */
        .hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.18);
        z-index: 2;
        }

        /* Glassmorphism logo box */
        .hero-content {
        position: relative;
        z-index: 3;

        width: 310px;
        min-height: 190px;
        padding: 42px 56px;

        display: flex;
        align-items: center;
        justify-content: center;

        background: rgba(255, 255, 255, 0.22);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);

        border: 1px solid rgba(255, 255, 255, 0.35);
        border-radius: 22px;

        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
        }

        /* Logo */
        .hero-logo {
        width: 240px;
        max-width: 100%;
        height: auto;
        display: block;
        }

        /* Slow moving background */
        @keyframes slowZoomMove {
        0% {
            transform: scale(1.08) translate3d(0, 0, 0);
        }

        25% {
            transform: scale(1.11) translate3d(-18px, -8px, 0);
        }

        50% {
            transform: scale(1.14) translate3d(18px, -16px, 0);
        }

        75% {
            transform: scale(1.12) translate3d(-12px, 14px, 0);
        }

        100% {
            transform: scale(1.16) translate3d(24px, 10px, 0);
        }
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
        .hero-section {
            height: 420px;
        }

        .hero-content {
            width: 82%;
            min-height: 150px;
            padding: 32px 28px;
            border-radius: 18px;
        }

        .hero-logo {
            width: 190px;
        }
        }
    /* hero css end */

    /* About me */
        .about-section {
        width: 100%;
        padding: 90px 20px;
        background: #eef0f2;
        box-sizing: border-box;
        }

        .about-wrap {
        position: relative;
        max-width: 1150px;
        min-height: 430px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        }

        /* Left image */
        .about-image {
        width: 54%;
        height: 630px;
        background-image: url("img/aboutme.png");
        background-size: cover;
        background-position: center;
        border-radius: 18px;
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
        }

        /* Glassmorphism card */
        .about-content {
        position: absolute;
        right: 0;
        width: 50%;
        padding: 54px 64px;
        box-sizing: border-box;

        background: rgba(255, 255, 255, 0.34);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        border: 1px solid rgba(255, 255, 255, 0.55);
        border-radius: 22px;

        box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
        }

        .about-label {
        margin: 0 0 12px;
        font-size: 13px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #8f7a68;
        font-family: Arial, sans-serif;
        }

        .about-content h2 {
        margin: 0 0 24px;
        font-size: 38px;
        line-height: 1.25;
        font-weight: 400;
        letter-spacing: 1.5px;
        color: #2f3c44;
        font-family: Georgia, "Times New Roman", serif;
        }

        .about-content p {
        margin: 0 0 16px;
        font-size: 15px;
        line-height: 1.9;
        letter-spacing: 1.2px;
        color: #5e6970;
        font-family: Arial, sans-serif;
        }

        /* Mobile responsive */
        @media (max-width: 900px) {
        .about-section {
            padding: 60px 18px;
        }

        .about-wrap {
            display: block;
            min-height: auto;
        }

        .about-image {
            width: 100%;
            height: 320px;
        }

        .about-content {
            position: relative;
            right: auto;
            width: 92%;
            margin: -70px auto 0;
            padding: 38px 30px;
        }

        .about-content h2 {
            font-size: 30px;
        }

        .about-content p {
            font-size: 14px;
        }
        }
    /* About me end*/