
* {
    box-sizing: border-box;
}

/* --- HERO SECTION --- */
.hero {
    height: 500px;
    background: url("../images/chicken-wings.png") no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
}

.hero-content h1 {
      font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content h4 {
        font-size: 48px;
        margin-bottom: 0px;
    }

    .hero-content p {
        margin: 0 0 50px 0;
        font-size: 18px;
    }

.cta-btn {
    background: #f15a24;
    color: white;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #c9471c;
    transform: scale(1.05);
}

/* --- FEATURED SECTION --- */
.featured {
    background: #435933;
    padding: 80px 60px;
    text-align: center;
}

.featured-header h2 {
    color: white;
    font-size: 42px;
    margin-bottom: 5px;
}

.featured-header p {
    color: #f5bf2a;
    font-style: italic;
    font-size: 22px;
    margin-bottom: 50px;
}

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

/* --- CARD GRID & FOOD CARDS --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.food-card {
    background: #fdfaf0;
    border-radius: 24px;
    padding: 18px;
    text-align: left;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.food-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.inner-box {
    border-radius: 20px;
    height: 200px;
    overflow: hidden;
    margin-bottom: 15px;
}

.inner-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

/* Card Accent Colors */
.green { background-color: #4A7C59; }
.orange { background-color: #f15a24; }
.yellow { background-color: #f5bf2a; }
.dark { background-color: #2c3e50; }

.card-content .category {
    font-size: 12px;
    font-weight: 600;
    color: #6aa67c;
    margin-bottom: 4px;
    display: block;
}

.card-content h3 {
    margin: 0 0 15px 0;
    font-size: 22px;
    color: #2b2b2b;
    line-height: 1.2;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.add-btn {
    background: #FCC630;
    color: black;
    border: none;
    padding: 10px 16px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s;
}

.add-btn:hover {
    background: #e5b121;
}

.meta {
    font-size: 12px;
    color: #777;
    display: flex;
    gap: 8px;
    align-items: center;
}

/* --- FIND US SECTION --- */
.find-us {
    padding: 80px 20px;
    background-color: #fdfaf0; 
    text-align: center;
}

.find-us h2 {
    font-size: 56px; 
    font-weight: 900;
    margin-bottom: 40px;
    color: #000;
    letter-spacing: -1px;
}

.find-us-container {
    max-width: 1100px;
    margin: 0 auto;
}

.map-wrapper {
    position: relative;
    line-height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
    filter: grayscale(0.2);
}

.location-details p {
    margin: 8px 0;
    font-size: 22px;
    color: #000;
}

.location-details .address {
    font-weight: 600;
    max-width: 600px;
    margin: 0 auto 15px auto;
}






        /* --- ORDER PAGE LAYOUT --- */
        .order-layout {
            display: flex;
            gap: 40px;
            padding: 60px;
            background: #fdfaf0;
            align-items: flex-start;
        }

        /* Sidebar occupies 1/4 of space */
        .order-sidebar {
            flex: 1; 
            max-width: 25%; 
        }


        .order-sidebar h4 {
            font-size: 16px;
            margin-bottom: 15px;
            font-weight: 600;
        }


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



        .order-sidebar li {
            margin-bottom: 12px;
        }



        .order-sidebar a {
            text-decoration: none;
            color: #333;
            font-size: 14px;
            display: block;
            padding: 8px 6px;
            border-radius: 6px;
            transition: 0.3s;
        }


        .order-sidebar a:hover,
        .order-sidebar a.active {
            color: #f5bf2a;
            font-weight: 600;
        }


        /* Products 3/4 of space */
        .order-products {
            flex: 3;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }


        /* Grid inside products */
        .order-products .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 25px;
        }





        /* Hide all cards initially except all */
        .cards-container {
          display: none;
          grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
          gap: 25px;
      }


      .cards-container:first-of-type {
          display: grid; /* Shop All */
      }


      #shop-all {
          display: grid; /* show Shop All by default */
      }



      /* Show the target container when clicked */
      .cards-container:target {
          display: grid;
      }




      /* --- CONTACT PAGE--- */
.contact-hero {
    position: relative;
    height: 500px; /* Adjust as needed */
    text-align: center;
    color: white;
    overflow: hidden;
}


.contact-hero .hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the hero */
    filter: brightness(0.6); 
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2; /* Makes text appear above image */
    top: 40%;
    transform: translateY(-50%);
    padding: 0 20px;
}




    .contact-hero-content h1 {
        font-size: 48px;
        margin-bottom: 10px;
    }

    .contact-hero-content p {
        margin: 5px 0;
        font-size: 18px;
    }


.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}



  .contact-btn {
    background: #f15a24;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    color: white;
}



    /* FORM */
    .contact-form-section {
        background: #fdfaf0;
        padding: 60px 20px;
        display: flex;
        justify-content: center;
    }



    .contact-form-box {
        background: #f5bf2a;
        padding: 40px;
        border-radius: 15px;
        width: 100%;
        max-width: 600px;
        text-align: center;
    }



    .contact-form-box h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }



    .contact-form-box form {
        display: flex;
        flex-direction: column;
        text-align: left;
    }



    .contact-form-box label {
        font-weight: 600;
        margin-top: 15px;
    }



    .contact-form-box input,
    .contact-form-box textarea {
        margin-top: 5px;
        padding: 12px;
        border: none;
        border-radius: 5px;
        font-size: 14px;
    }



    .contact-form-box textarea {
        height: 120px;
        resize: none;
    }



    .contact-form-box button {
        margin-top: 25px;
        padding: 12px;
        background: #f15a24;
        color: white;
        border: none;
        border-radius: 6px;
        font-weight: 600;
        cursor: pointer;
    }



    .contact-form-box button:hover {
        opacity: 0.9;
    }







    /* --- OUR STORY  --- */

    .section-title {
        font-size: 32px;
        font-weight: 800;
        text-align: center;
        margin: 40px 0;
        color: #000;
    }



    /* Hero Section with Box Overlap */
    .story-hero-banner {
        position: relative;
        width: 100%;
    }



    .hero-image-container {
        position: relative;
        height: 450px;
        overflow: hidden;
    }



    .hero-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.65);
    }



    .story-overlay-card {
        position: absolute;
        right: 15%;
        top: 50%;
        transform: translateY(-50%);
        width: 380px;
        z-index: 10;
    }


    .yellow-title-box {
        background-color: #FCC630;
        color: #000;
        font-size: 36px;
        font-weight: 800;
        padding: 8px 20px;
        display: inline-block;
        border-radius: 4px;
        position: relative;
        left: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }



    .story-card-inner {
        background: #fff;
        padding: 30px 25px 25px 25px;
        border-radius: 4px;
        margin-top: -10px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }



    .story-card-inner .year-label {
        color: #e31837;
        font-weight: 700;
        font-size: 18px;
        display: block;
        margin-bottom: 5px;
    }



    .story-card-inner p {
        font-size: 14px;
        line-height: 1.6;
        color: #333;
        margin: 0;
    }


    /* Timeline Grid */
    .timeline-section {
        padding: 40px 60px;
        background: #fff;
    }



    .timeline-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }



    .timeline-item {
        text-align: left;
    }



    .timeline-item img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border-radius: 15px;
        margin-bottom: 12px;
    }



    .timeline-item .year {
        color: #e31837;
        font-weight: 700;
        font-size: 14px;
        display: block;
        margin-bottom: 4px;
    }



    .timeline-item p {
        font-size: 12px;
        color: #333;
        line-height: 1.5;
        margin: 0;
    }



    /* --- MISSION VISION CAROUSEL SECTION --- */
    .mission-carousel {
      background-color: #f5bf2a; 
      padding: 80px 0;
      overflow: hidden;
      position: relative;
    }

    .carousel-wrapper {
      max-width: 1000px;
      margin: 0 auto;
      position: relative;
    }


    /* Hide Radio Buttons */
    input[name="slide"] {
      display: none;
    }


    /* Container for all slides */
    .slides-container {
      display: flex;
      width: 200%; 
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }


    .slide {
      width: 50%; 
      display: flex;
      justify-content: center;
      padding: 0 20px;
    }



    /* The White Card */
    .slide-card {
      background: white;
      border-radius: 40px;
      padding: 40px;
      display: flex;
      align-items: center;
      gap: 40px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }


    .slide-img { flex: 1; }
    .slide-img img {
      width: 100%;
      border-radius: 25px;
      display: block;
    }


    .slide-text { flex: 1; }
    .label-red {
      color: #db0007;
      font-weight: 700;
      text-transform: uppercase;
    }



    #slide1:checked ~ .slides-container { transform: translateX(0%); }

    #slide2:checked ~ .slides-container { transform: translateX(-50%); }



    /* --- ARROWS --- */
    .nav-arrows, .nav-arrows-2 {
      position: absolute;
      top: 50%;
      width: 100%;
      display: none; /* Hidden by default */
      justify-content: space-between;
      transform: translateY(-50%);
      pointer-events: none;
    }


    .arrow {
      font-size: 40px;
      color: #db0007;
      cursor: pointer;
      pointer-events: auto;
      padding: 0 20px;
    }


    /* Show specific arrows based on which slide is active */
    #slide1:checked ~ .nav-arrows { display: flex; }
    #slide2:checked ~ .nav-arrows-2 { display: flex; }




    /* Products and Services */
    .products-and-services {
        padding: 60px;
        background: #fff;
    }



    .service-row {
        display: flex;
        max-width: 1000px;
        margin: 0 auto 50px auto;
        align-items: center;
        gap: 40px;
    }



    .service-row:nth-child(even) {
        flex-direction: row-reverse;
    }



    .service-image {
        flex: 1;
    }


    .service-image img {
        width: 100%;
        border-radius: 12px;
        display: block;
    }


    .service-text {
        flex: 1.5;
    }



    .service-text h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #000;

    }



    .service-text p {
        font-size: 14px;
        color: #555;
        line-height: 1.6;
        margin-bottom: 10px;
    }




    /* --- OUR FOOD PAGE --- */

    .food-quality {
        background: #fff;
        padding: 60px 0;
        text-align: center;

    }



    .food-quality h2 {

        font-size: 32px;

        font-weight: 800;

    }



    .subtitle {

        color: red;

        font-weight: 600;

    }



    .desc {

        margin-bottom: 30px;

    }



    /* CENTERED NARROW GRID */

    .quality-grid {

        display: grid;

        grid-template-columns: repeat(2, 280px); 

        justify-content: center; 

        gap: 20px;

    }



    .quality-card {

        background: #f5bf2a;

        border-radius: 16px;

        padding: 10px;

        text-align: left;

    }



    /* IMAGE */

    .img-wrap {

        position: relative;

        border-radius: 12px;

        overflow: hidden;

    }



    .img-wrap img {

        width: 100%;

        height: 120px;

        object-fit: cover;

        display: block;

    }



    /* OVERLAY TEXT */

    .img-wrap h3 {

        position: absolute;

        bottom: 6px;

        right: 8px;

        font-size: 14px;

        font-weight: 800;

        background: rgba(255,255,255,0.9);

        padding: 3px 6px;

        border-radius: 4px;

    }



    /* DESCRIPTION */

    .quality-card p {

        font-size: 11px;

        margin-top: 6px;

        line-height: 1.4;

    }


    /* --- FAQs PAGE --- */
   
    .faq-section {
      background: #fdfaf0;
      padding: 60px;
    }

    .faq-container {
        display: flex;
        gap: 60px; 
        max-width: 1200px; 
        margin: 0 auto;    
        padding: 0 10%;    
    }

    /* LEFT PANEL */
    .faq-left {
      flex: 1;
    }

    .faq-category {
      background: #eee;
      padding: 18px;
      border-radius: 10px;
      margin-bottom: 12px;
      font-weight: 600;
      display: block;
      text-decoration: none;
      color: black;
      transition: 0.3s;
    }

    .faq-category:hover {
      background: #ddd;
    }

    .faq-category.active {
      background: #f5bf2a;
    }

    /* CONTACT BOX */
    .faq-contact {
      margin-top: 30px;
      background: #f3f3f3;
      padding: 40px;
      border-radius: 20px;
      text-align: center;
    }

    .faq-contact .contact-btn {
        text-decoration: none; 
        display: inline-block; 
        transition: transform 0.3s ease, background 0.3s ease;
    }

    .faq-contact .contact-btn:hover {
        text-decoration: none; /* Force remove underline on hover */
        background: #c9471c;   
        transform: translateY(-3px); /* Subtle lift effect */
    }


    .faq-section {
        background: #fdfaf0;
        padding: 80px 0; /* Vertical padding only, horizontal handled by container */
    }

    /* RIGHT FAQ */
    .faq-right {
      flex: 2;
    }

    /* HIDE CHECKBOX */
    .faq-right input {
      display: none;
    }

    /* ITEM */
    .faq-item {
      background: #fff;
      border-radius: 12px;
      margin-bottom: 15px;
      overflow: hidden;
      border: 1px solid #eee;
      transition: 0.3s;
    }

    /* QUESTION */
    .faq-question {
      display: flex;
      justify-content: space-between;
      padding: 18px;
      font-weight: 600;
      cursor: pointer;
      align-items: center;
    }

    /* ICON (+ to -) */
    .icon {
      width: 18px;
      height: 18px;
      position: relative;
    }

    .icon::before,
    .icon::after {
      content: "";
      position: absolute;
      background: black;
      transition: 0.3s;
    }

    /* horizontal line */
    .icon::before {
      width: 100%;
      height: 2px;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
    }

    /* vertical line */
    .icon::after {
      height: 100%;
      width: 2px;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
    }

    /* ANSWER (hidden by default) */
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 18px;
      transition: max-height 0.4s ease, padding 0.3s ease;
      font-size: 14px;
    }

    /* Active item */
    .faq-right input:checked + .faq-item {
      background: #2f6f55;
      color: white;
    }

    /* Show answer */
    .faq-right input:checked + .faq-item .faq-answer {
      max-height: 500px; /* prevents cutting */
      padding: 15px 18px;
      color: white;
    }

    /* Turn + into - */
    .faq-right input:checked + .faq-item .icon::after {
      transform: scaleY(0);
    }

    /* Icon turns white */
    .faq-right input:checked + .faq-item .icon::before {
      background: white;
    }



    /* --- PRIVACY POLICY PAGE --- */
    .privacy-page {
        background-color: #fdfaf0;
    }



    /* Hero Section */

    .privacy-hero {
        position: relative;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        color: white;
        text-align: center;
    }



    .hero-image-overlay {

        position: absolute;

        top: 0;

        left: 0;

        width: 100%;

        height: 100%;

        z-index: 1;

    }



    .hero-image-overlay img {

        width: 100%;

        height: 100%;

        object-fit: cover;

    }



    .hero-image-overlay::after {

        content: "";

        position: absolute;

        top: 0;

        left: 0;

        width: 100%;

        height: 100%;

        background: rgba(0, 0, 0, 0.5);

    }



    .privacy-hero .hero-content {

        position: relative;

        z-index: 2;

    }



    .privacy-hero h1 {

        font-size: 60px;

        font-weight: 800;

        text-transform: uppercase;

        margin: 0;

    }



    /* Layout Container */

    .privacy-container {

        max-width: 1100px;

        margin: 80px auto;

        display: flex;

        flex-direction: row-reverse; 
        justify-content: flex-end;

        gap: 80px;

        padding: 0 40px;

    }



    /* Sidebar Styles */

    .privacy-sidebar {

        flex: 0 0 220px;

        position: sticky;

        top: 40px;

        height: fit-content;

    }



    .privacy-sidebar h3 {

        font-size: 13px;

        text-transform: uppercase;

        color: #999;

        margin-bottom: 20px;

        letter-spacing: 1px;

    }



    .privacy-sidebar ul {

        list-style: none;

        padding: 0;

    }



    .privacy-sidebar li a {

        display: block;

        padding: 10px 15px;

        text-decoration: none;

        color: #666;

        font-weight: 500;

        font-size: 14px;

        border-radius: 8px;

        margin-bottom: 5px;

        transition: 0.3s;

    }



    .privacy-sidebar li a:hover {

        background: #eee;

    }



    #intro:target ~ .privacy-sidebar ul li a[href="#intro"],

    #collection:target ~ .privacy-sidebar ul li a[href="#collection"],

    #usage:target ~ .privacy-sidebar ul li a[href="#usage"],

    #third-party:target ~ .privacy-sidebar ul li a[href="#third-party"],

    #rights:target ~ .privacy-sidebar ul li a[href="#rights"],

    #security:target ~ .privacy-sidebar ul li a[href="#security"],

    #contact-info:target ~ .privacy-sidebar ul li a[href="#contact-info"] {

        background: #f15a24; /* Mood's Wing Orange */

        color: white;

        font-weight: 600;

        box-shadow: 0 4px 12px rgba(241, 90, 36, 0.3);

    }



    /* Content Styles */

    .privacy-content {

        flex: 1;

    }



    .privacy-content section {

        margin-bottom: 60px;

        scroll-margin-top: 100px; 
    }



    .privacy-content h2 {

        font-size: 32px;

        font-weight: 800;

        color: #1f6b4f; 

        margin-bottom: 20px;

    }



    .privacy-content p {

        line-height: 1.8;

        color: #444;

        font-size: 16px;

        margin-bottom: 15px;

    }



    .contact-box {

        background: #fff;

        padding: 25px;

        border-radius: 15px;

        border-left: 5px solid #f15a24;

        box-shadow: 0 5px 15px rgba(0,0,0,0.05);

    }







    /* --- CONTENT TARGET STYLING --- */


    .privacy-content section:target h2 {

        color: #f15a24; 

        transform: translateX(10px);

        transition: all 0.4s ease;

    }


    .privacy-content section:target p {

        color: #000;

        transition: color 0.4s ease;

    }




    .privacy-content section:target {

        border-left: 3px solid #f15a24;

        padding-left: 20px;

        margin-left: -23px; 

        transition: all 0.4s ease;

    }





    html {

        scroll-behavior: smooth;

    }


    /* --- ANNOUNCEMENT PAGE STYLES --- */

    .announcement-hero {
        height: 350px;
        background: url("../images/chicken-wings.png") no-repeat center/cover;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.6);
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: white;
    }

    .hero-overlay h1 {
        font-size: 48px;
        margin: 0;
    }

     .hero-overlay p {
        margin: 5px 0;
        font-size: 18px;
    }


   

    .announcement-container {
        padding: 80px 60px;
        background-color: #fff;
    }

    .announce-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        gap: 50px;
        max-width: 1100px;
        margin: 0 auto;
    }

    .announce-card {
        display: flex;
        gap: 25px;
        align-items: flex-start;
    }

    .announce-img {
        flex: 1;
        height: 200px;
        border-radius: 15px;
        overflow: hidden;
    }

    .announce-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .announce-content {
        flex: 1.2;
    }

    .announce-meta {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
    }

    .badge {
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        color: white;
    }

  
    .badge.holiday { background-color: #f15a24; } /* Orange */
    .badge.product { background-color: #1f6b4f; } /* Green */
    .badge.promo { background-color: #f5bf2a; color: #000; } /* Yellow */

    .date {
        font-size: 12px;
        color: #999;
    }

    .announce-content h3 {
        font-size: 20px;
        margin: 0 0 10px 0;
        color: #222;
    }

    .announce-content p {
        font-size: 14px;
        color: #666;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .read-link {
        text-decoration: none;
        color: #222;
        font-weight: 600;
        font-size: 13px;
    }



/* --- PROFILE PAGE --- */

.account-section {
    background: #fdfaf0;
    padding: 60px;
}

.account-container {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

/* SIDEBAR */
.account-sidebar {
    width: 220px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.account-sidebar a {
    padding: 10px;
    border-radius: 8px;
    background: #eee;
    text-decoration: none;
    color: black;
    font-size: 14px;
}

.account-sidebar a.active,
.account-sidebar a:hover {
    background: #f5bf2a;
    font-weight: 600;
}

/* CONTENT */
.account-content {
    flex: 1;
    text-align: center;
}

.account-content h2 {
    margin-bottom: 20px;
}

/* PROFILE ICON */
.profile-avatar {
    width: 90px;
    height: 90px;
    background: #f5bf2a;
    border-radius: 50%;
    margin: 0 auto 20px auto;
}

/* FORM */
.account-form {
    max-width: 500px;
    margin: auto;
    text-align: left;
}

.account-form label {
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-top: 15px;
}

.account-form input {
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #ccc;
    margin-top: 5px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row div {
    flex: 1;
}

/* BUTTON */
.save-btn {
    margin-top: 20px;
    background: #f15a24;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 20px;
    cursor: pointer;
}

.save-btn:hover {
    background: #c9471c;
}


/* REWARDS PAGE */

.reward-card h4 {
    margin: 8px 0 2px; 
    font-size: 16px;
}

.reward-card p {
    margin: 0 0 8px;
    font-size: 13px;
    color: #777;
}
.rewards-page {
    background: #fdfaf0;
    padding: 60px;
}

/* ===== HERO ===== */
.rewards-hero {
    background: #1f6b4f;
    color: white;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
}

/* USER */
.user-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: #f5bf2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* POINTS */
.points {
    font-weight: 600;
    color: #f5bf2a;
}

/* PROGRESS */
.next-reward {
    margin: 15px 0 10px;
    font-weight: 500;
}

.progress-bar {
    height: 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 70%;
    background: #f5bf2a;
    animation: fillAnim 1.2s ease;
}

@keyframes fillAnim {
    from { width: 0; }
}

/* ===== TABS ===== */
.reward-tabs input {
    display: none;
}

.tab-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.tab-buttons label {
    padding: 10px 20px;
    background: #eee;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
}

/* ACTIVE TAB */
#tab1:checked ~ .tab-buttons label[for="tab1"],
#tab2:checked ~ .tab-buttons label[for="tab2"] {
    background: #f5bf2a;
    font-weight: 600;
}

/* TAB CONTENT */
.tab-content {
    display: none;
}

#tab1:checked ~ .redeem {
    display: block;
}

#tab2:checked ~ .earn {
    display: block;
}

/* ===== REWARD CARDS ===== */
.reward-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.reward-card {
    background: white;
    border-radius: 20px;
    padding: 15px 15px 20px; 
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.reward-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.reward-card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 10px;
}

/* 🔥 FIX BUTTON */
.reward-card .add-btn {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
    text-decoration: none; 
}

/* EXTRA SAFETY */
.reward-card a {
    text-decoration: none;
}

/* LOCKED STATE */
.reward-card.locked {
    filter: grayscale(1);
    opacity: 0.6;
}

.reward-card.locked .add-btn {
    background: #ccc;
    cursor: not-allowed;
}

/* ===== EARN SECTION ===== */
.earn-item {
    display: flex;
    gap: 10px;
    background: white;
    padding: 5px;
    border-radius: 15px;
    margin-bottom: 15px;
    align-items: center;
}

/* ===== EARN = MISSION LIST ===== */

.earn-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* EACH MISSION */
.earn-item {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: white;
    padding: 18px 20px;
    border-radius: 16px;

    box-shadow: 0 6px 15px rgba(0,0,0,0.06);
    transition: 0.3s;
}

/* HOVER EFFECT */
.earn-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* LEFT SIDE TEXT */
.earn-item h4 {
    margin: 0;
    font-size: 15px;
}

.earn-item p {
    margin: 2px 0 0;
    font-size: 12px;
    color: #777;
}

/* RIGHT SIDE (POINTS) */
.earn-item::after {
    content: "+100 pts"; /* default */
    font-weight: 600;
    color: #1f6b4f;
    font-size: 14px;
}

/* CUSTOM POINTS PER ITEM */
.earn-item:nth-child(2)::after {
    content: "+200 pts";
}

.earn-item:nth-child(3)::after {
    content: "+500 pts";
}

/* OPTIONAL: CHECK ICON */
.earn-item::before {
    content: "✔";
    color: #f5bf2a;
    font-weight: bold;
    margin-right: 10px;
}

/* ===== REFERRAL ===== */
.referral-box {
    margin-top: 30px;
    background: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
}

.ref-code {
    margin-top: 15px;
    padding: 12px;
    border: 2px dashed #f5bf2a;
    font-weight: 700;
    user-select: all;
}

/* ===== POPUP ===== */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
}

.popup:target {
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    width: 300px;
    animation: pop 0.3s ease;
}

@keyframes pop {
    from { transform: scale(0.8); opacity: 0; }
}

/* HIDE SUCCESS INITIALLY */
#success-state {
    display: none;
}

/* CONFETTI */
.confetti {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.confetti::before,
.confetti::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #f5bf2a;
    animation: fall 1s linear infinite;
}

.confetti::after {
    left: 50%;
    background: #f15a24;
}

@keyframes fall {
    0% { transform: translateY(-20px); opacity: 1; }
    100% { transform: translateY(200px); opacity: 0; }
}

/* POPUP POSITION FIX */
.popup-box {
    position: relative;
}

/* CANCEL BUTTON */
.cancel-btn {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #555;
}

/* HIDE MOBILE ELEMENTS BY DEFAULT */
.hamburger,
.nav-menu-mobile,
.view-bag {
    display: none;
}


   #shopbytext h4 {
        display: flex;
    }

html {
    scroll-behavior: smooth;
}

  .hero-overlay h5{ font-size: 48px; }
