/* ==========================================================================
   GLOBAL RESET & UTILITIES
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

body {
  width: 100%;
  background: #f9f9f9;
}

/* --- Scroll Animation Helpers --- */
.hidden-scroll {
    opacity: 0;
    transform: translateY(20px); 
    transition: opacity 0.6s ease-out, transform 0.6s ease-out; 
}

.show-scroll {
    opacity: 1;
    transform: translateY(0); 
}


/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header {
  position: fixed;
  width: 100%;
  padding: 25px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.5s ease-in-out, padding 0.5s ease-in-out;
  z-index: 1000; 
}

header.scrolled {
  background-color: #f9f9f9;
}

.logo {
  width: 180px;
  height: auto;
  z-index: 1002; 
}

/* --- Desktop Nav Links --- */
.navigation {
  display: flex;
  align-items: center;
  gap: 70px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-family: 'LEMON MILK', sans-serif;
  font-size: 1rem;
  color: #19303D;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 4px;
  background-color: #00A393;
  left: 0;
  bottom: -5px;
  transition: width 0.5s ease-in-out;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

header.scrolled .nav-links a {
  color: #19303d;
}

.nav-btns {
  display: flex;
  gap: 20px;
}


/* ==========================================================================
   MOBILE NAVIGATION
   ========================================================================== */
.burger-menu {
    display: none; 
    cursor: pointer;
    z-index: 1002; 
}

.burger-menu div {
    width: 25px;
    height: 3px;
    background-color: #19303D;
    margin: 5px 0;
    transition: all 0.4s ease;
}

header.scrolled .burger-menu div {
    background-color: #19303d; 
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: fixed;
    top: 0;
    left: 100%; 
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle, rgba(0, 120, 110, 1) 0%, rgba(0, 0, 0, 1) 100%);
    transition: transform 0.5s ease-in-out;
    z-index: 1001;
}

.mobile-nav.open {
    transform: translateX(-100%);
}

.mobile-nav a {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1.5rem;
    color: #f9f9f9;
    opacity: 0;
    transform: translateY(20px);
}

/* Burger Toggle Animation */
.burger-menu.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.burger-menu.toggle .line2 {
    opacity: 0;
}
.burger-menu.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Header Responsive Breakpoint */
@media (max-width: 992px) {
    .navigation, .nav-btns {
        display: none; 
    }

    .burger-menu {
        display: block; 
    }

    .mobile-nav.open a {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
    }
}


/* ==========================================================================
   PRODUCT HERO SECTION
   ========================================================================== */
.product_item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 168px 20px;
    padding-bottom: 64px;
    gap: 80px;
}

.product_item > div:first-child {
    flex-shrink: 0;
    width: 350px;
}

.product_img {
    max-width: 100%;
    width: 350px;
    height: auto;
    display: block;
}

/* --- Rating Stars --- */
.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.rating .star {
    width: 20px; 
    height: 20px;
}

.rating h5 {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #11111156;
    margin-left: 5px;
}

/* --- Product Info Text --- */
.product_info {
    max-width: 400px;
}

.product_info h1 {
    font-family: 'Agnostic', sans-serif;
    font-size: 5em;
    letter-spacing: 6px;
    color: #00A393;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.flavor_name {
    font-size: 1em;
    font-family: 'LEMON MILK', sans-serif;
    margin-bottom: 30px;
    font-weight: 400;
    padding: 8px 96px;
    text-align: center;
    display: inline-block;
    background: linear-gradient(to right, #00ADE000, #00ADE0, #00ADE000);
    color: white;
}

.product_info ul {
    display: flex;
    gap: 24px;
    border-top: 1px solid #f9f9f9;
    border-bottom: 1px solid #f9f9f9;
}

.product_info ul li {
    font-family: 'LEMON MILK', sans-serif;
    font-weight: 400;
    padding: 10px 0;
    color: #111111;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product_info ul hr {
    display: none; 
}

/* --- Action Buttons --- */
.buttons {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.main_btn1,
.main_btn2 {
    font-family: 'LEMON MILK', sans-serif;
    font-weight: 400;
    padding: 15px 10px;
    border: none;
    border-radius: 12px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    width: 100%;
    max-width: 380px;
    align-self: flex-start;
}

.main_btn1 {
    background: linear-gradient(to bottom, #00A393, #005F56);
    color: #f9f9f9;
}

.main_btn1:hover {
    background: linear-gradient(to bottom, #005F56, #00A393);
}

.main_btn2 {
    border-radius: 12px;
    background: transparent;
    color: #00A393;
    border: 2px solid #00A393; 
}

.main_btn2:hover {
    color: #005F56;
}

/* --- Product Thumbnails --- */
.product_imgs {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    justify-content: flex-start;
}

.product_imgs img {
    width: 108px;
    height: auto;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: border-color 0.2s ease;
}

.product_imgs img:hover {
    border-color: #00A393;
}

/* Hero Responsive Styles */
@media (max-width: 768px) {
    .product_item {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .product_item > div:first-child {
        width: 80%;
    }

    .product_info {
        text-align: center;
    }

    .buttons {
        align-items: center;
    }

    .main_btn1, .main_btn2 {
        max-width: 80%;
    }

    .product_imgs {
        justify-content: center; 
    }
}


/* ==========================================================================
   BENEFITS SECTION
   ========================================================================== */
.benefits {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 40px;
    font-family: 'LEMON MILK', sans-serif;
    font-weight: 600;
}

.ben {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.FS { color: #00ADE0; }
.SB { color: #C6853E; }
.NS { color: #5EB531; }
.ND { color: #009F91; }


/* ==========================================================================
   PRODUCT DETAILS & REVIEWS
   ========================================================================== */
.info_sections {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.info_tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    border-bottom: 2px solid #eee;
}

.info_tab_btn {
    background: none;
    border: none;
    padding: 15px 30px;
    font-family: 'Agnostic', sans-serif;
    font-size: 20px;
    color: #009F91;
    cursor: pointer;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info_tab_btn:hover {
    color: #008479;
}

.info_tab_btn.active {
    color: #008479;
    border-bottom: 2px solid #009F91;
}

.info_content {
    display: none;
    padding: 30px 0;
    animation: fadeIn 0.5s ease-out forwards;
}

.info_content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Review Summary --- */
.reviews_summary {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.overall_rating {
    text-align: center;
    margin: 20px;
}

.overall_rating h2 {
    font-family: 'Agnostic', sans-serif;
    letter-spacing: 10px;
    font-size: 5em;
    color: #009F91;
    margin-bottom: 5px;
}

.stars_overall img {
    width: 25px;
    height: 25px;
}

.overall_rating p {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 0.9em;
    color: #009F91;
    margin-top: 10px;
}

.rating_breakdown {
    margin: 20px;
    min-width: 250px;
}

.rating_row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.rating_row span {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1.1em;
    font-weight: 400;
    color: #009F91;
    width: 20px;
    text-align: right;
}

.rating_row img {
    width: 18px;
    height: 18px;
}

.progress_bar {
    background-color: #e0e0e0;
    height: 10px;
    width: 150px;
    border-radius: 5px;
    overflow: hidden;
}

.progress_fill {
    background-color: #009F91;
    height: 100%;
    border-radius: 5px;
    transition: width 0.5s ease-out;
}

.review_actions {
    margin: 20px;
}

.make_review_btn {
    background: transparent;
    border: 2px solid #009F91;
    color: #009F91;
    padding: 12px 25px;
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    float: right;
}

.make_review_btn:hover {
    background-color: #009F91;
    color: #f9f9f9;
}

.clear {
    clear: both;
}

/* --- Individual Reviews List --- */
.all_reviews {
    margin-top: 30px;
}

.toggle_reviews_btn {
    background: none;
    border: none;
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1em;
    color: #009F91;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    float: right;
}

.toggle_reviews_btn .arrow_icon {
    transition: transform 0.3s ease;
}

.toggle_reviews_btn.expanded .arrow_icon {
    transform: rotate(180deg);
}

.individual_reviews_container {
    max-height: 400px;
    overflow: hidden;
    transition: max-height 0.7s ease-out, opacity 0.5s ease-out;
    opacity: 1;
}

.individual_reviews_container.collapsed {
    max-height: 0;
    opacity: 0;
}

.individual_review {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    gap: 20px;
    flex-wrap: wrap;
}

.individual_review:hover .reviewer_name,
.individual_review:hover .review_date {
    color: #11111188;
    cursor: pointer;
}

.individual_review:last-child {
    border-bottom: none;
}

.reviewer_info {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1em;
}

.profile_pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    cursor: pointer;
}

.reviewer_details {
    display: flex;
    flex-direction: column;
}

.reviewer_stars img {
    width: 15px;
    height: 15px;
    margin-right: 2px;
}

.reviewer_name {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 0.9em;
    color: #11111156;
    margin-top: 5px;
}

.review_text {
    flex-grow: 1;
    max-width: 500px;
}

.review_text h4 {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1rem;
    color: #111111;
    margin-bottom: 5px;
}

.review_text p {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 12px;
    color: #11111156;
    line-height: 1.6;
}

.review_date {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1rem;
    color: #11111156;
    flex-shrink: 0;
    text-align: right;
    margin-left: auto;
}

/* Reviews Responsive Styles */
@media (max-width: 900px) {
    .reviews_summary {
        flex-direction: column;
        align-items: center;
    }
    .review_actions {
        order: 3;
    }
}

@media (max-width: 600px) {
    .info_tab_btn {
        font-size: 1em;
        padding: 10px 15px;
    }
    .individual_review {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .reviewer_info {
        flex-direction: column;
        text-align: center;
        margin-bottom: 10px;
    }
    .reviewer_details {
        align-items: center;
    }
    .review_date {
        margin-left: 0;
        margin-top: 15px;
    }
    .review_text {
        text-align: center;
    }
}


/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq_section_container {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 30px 20px;
    flex-wrap: wrap;
}

.faq_questions_column {
    flex: 2;
    min-width: 300px;
    max-width: 700px;
}

.faq_main_title {
    font-family: 'Agnostic', sans-serif;
    font-size: 2rem;
    color: #009F91;
    margin-bottom: 30px;
    text-align: left;
    letter-spacing: 2px;
}

.faq_item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq_question {
    background: #f9f9f9;
    border: none;
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1em;
    font-weight: 600;
    color: #111111;
    transition: background-color 0.3s ease;
}

.faq_question:hover {
    background-color: #f0f0f0;
}

.faq_toggle_icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq_question.active .faq_toggle_icon {
    transform: rotate(45deg);
}

.faq_answer {
    background: #f9f9f9;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.faq_answer.active {
    max-height: 200px;
    padding: 15px 25px;
}

.faq_answer p {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 12px;
    color: #11111156;
    line-height: 1.6;
}

.faq_contact_column {
    flex: 1;
    min-width: 280px; 
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.faq_contact_card {
    background: linear-gradient(to bottom, #f9f9f9, #4FB1A8);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    color: #111111;
    max-width: 350px;
}

.faq_contact_card .speech_icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.faq_contact_card h4 {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1em;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.faq_contact_card p {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 10px;
    line-height: 1.5;
    margin-bottom: 25px;
    opacity: 0.9;
}

.direct_mail_btn {
    background: linear-gradient(to bottom, #f9f9f9, #4FB1A8);
    border: none;
    color: #009F91;
    padding: 15px 30px;
    border-radius: 12px;
    font-family: 'LEMON MILK', sans-serif;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.direct_mail_btn:hover {
    background: linear-gradient(to bottom, #4FB1A8, #f9f9f9);
    color: #008479;
}

/* FAQ Responsive Styles */
@media (max-width: 768px) {
    .faq_section_container {
        flex-direction: column;
        align-items: center;
    }
    .faq_questions_column,
    .faq_contact_column {
        min-width: unset;
        width: 100%; 
        max-width: 600px; 
    }
    .faq_contact_column {
        margin-top: 30px; 
    }
}


/* ==========================================================================
   CROSS-SELL SECTION (YOU MIGHT ALSO LIKE)
   ========================================================================== */
.shop-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 0;
    position: relative; 
    overflow: hidden;
    margin-bottom: 88px;
}

.shop-section h2 {
    font-family: 'Agnostic', sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
    color: #00A393;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.flavor-cards-container {
    display: flex;
    justify-content: center; 
    gap: 80px;
    flex-wrap: wrap; 
    margin-top: 64px; 
}

/* --- Individual Flavor Card --- */
.flavor-card {
    border-radius: 15px;
    padding: 30px 20px;
    width: 280px;
    display: flex;
    flex-direction: column; 
    align-items: center;
    transition: transform 1s ease, border-color 1s ease; 
}

.flavor-card:hover {
    transform: translateY(-10px);
}

.can-wrapper {
    position: relative; 
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

.flavor-can {
    max-width: 100%; 
    height: auto;
    display: block;
    margin: 0 auto; 
}

/* Add Button Styling */
.add-button, .add-more-button {
    background: linear-gradient(to bottom, #f9f9f9, #4FB1A8);
    position: absolute;
    top: -20px;
    right: -10px;
    border-radius: 20%;
    border: none;
    width: 75px;
    height: 75px;
    cursor: pointer;
    transition: background-color 1s ease, transform 1s ease;
}

.add-button:hover, .add-more-button:hover {
    background: linear-gradient(to bottom, #4FB1A8, #f9f9f9);
    transform: scale(1.1);
}

/* Flavor Labels */
.flavor-name {
    background: linear-gradient(to right, #00ADE000, #00ADE0, #00ADE000);
    font-family: 'LEMON MILK', sans-serif;
    padding: 8px 64px;
    font-size: 12px;
    font-weight: 600;
    color: #f9f9f9;
    margin-bottom: 30px;
}

.frost-surge { background: linear-gradient(to right, #00ADE000, #00ADE0, #00ADE000); }
.solar-blaze { background: linear-gradient(to right, #C6853E00, #C6853E, #C6853E00); }
.night-shift { background: linear-gradient(to right, #5EB53100, #5EB531, #5EB53100); }
.natural-drift { background: linear-gradient(to right, #2AA07C00, #2AA07C, #2AA07C00); }

.flavor-description {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 12px;
    font-weight: 200;
    color: #f9f9f9;
    margin-bottom: 30px;
}

/* Learn More Button */
.learn-more-button {
    background: transparent;
    border: 2px solid #009F91;
    color: #009F91;
    padding: 12px 25px;
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.learn-more-button:hover {
    color: #007d73;
    transform: translateY(-3px);
}

/* Shop Responsive Adjustments */
@media (max-width: 900px) {
    .flavor-cards-container {
        flex-direction: column; 
        align-items: center; 
    }
    .flavor-card {
        width: 80%; 
        max-width: 350px; 
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 2.2em;
    }
    .flavor-card {
        padding: 20px 15px;
    }
    .learn-more-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}


/* ==========================================================================
   NUTRITION FACTS
   ========================================================================== */
.nutrition_facts_container {
    display: flex;
    justify-content: center;
    padding: 30px 20px;
}

.nutrition_facts_image {
    max-width: 100%; 
    height: auto;
    display: block; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-radius: 8px;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background-color: #142129;
    max-width: 100%;
    margin-top: 120px;
    padding-bottom: 20px;
}

.footer-container {
    background-color: #142129;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 70px;
    padding: 70px 100px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

/* --- About Column --- */
.footer-col-about {
    flex-basis: 30%;
    min-width: 280px;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
    display: block;
}

.footer-description {
    font-family: 'LEMON MILK', sans-serif;
    font-weight: 200;
    font-size: 1em;
    margin-bottom: 30px;
    color: #f9f9f9;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icon {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.contact-info h4 {
    font-family: 'LEMON MILK', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
    color: #f9f9f9
}

.contact-info p {
    font-family: 'LEMON MILK', sans-serif;
    font-weight: 200;
    font-size: 12px;
    margin-bottom: 5px;
    color: #f9f9f956
}

/* --- Links Column --- */
.footer-col-links {
    display: flex; 
    gap: 30px;
    flex-wrap: wrap; 
    flex-basis: 35%; 
    min-width: 300px;
}

.footer-nav-group h4 {
    font-family: 'LEMON MILK', sans-serif;
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #f9f9f9;
}

.footer-nav-group ul {
    font-family: 'LEMON MILK', sans-serif;
    font-weight: 400;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-group ul li {
    margin-bottom: 8px;
}

.footer-nav-group ul li a {
    color: #f9f9f950;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-nav-group ul li a:hover {
    color: #00A393;
}

/* --- Newsletter Column --- */
.footer-col-newsletter {
    flex-basis: 30%;
    min-width: 280px;
}

.footer-col-newsletter h4 { 
    font-family: 'LEMON MILK', sans-serif;
    font-weight: 200;
    font-size: 20px;
    margin-bottom: 30px;
    color: #f9f9f9;
    margin-bottom: 15px;
}

.newsletter-input {
    width: 100%;
    padding: 16px 16px;
    background-color: transparent;
    border: 1px solid #f9f9f9;
    border-radius: 8px;
    font-size: 12px;
    margin-bottom: 15px;
}

.newsletter-input::placeholder {
    color: #f9f9f956;
}

.newsletter-description {
    font-family: 'LEMON MILK', sans-serif;
    font-weight: 200;
    font-size: 10px;
    color: #f9f9f9;
    margin-bottom: 20px;
}

.subscribe-button {
    width: 100%;
    background: linear-gradient(to bottom, #f9f9f9, #4FB1A8);
    color: #005F56;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1em;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.6s ease, transform 0.6s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.subscribe-button:hover {
    background: linear-gradient(to bottom, #4FB1A8, #f9f9f9);
    transform: translateY(-3px);
}

.footer-bottom {
    font-family: 'LEMON MILK', sans-serif;
    font-weight: 200;
    font-size: 10px;
    color: #f9f9f9;
    border-top: 1px solid #00A393;
    text-align: center;
    padding-top: 20px;
    margin-top: 40px;
}

/* Footer Responsive Styles */
@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        min-width: auto;
        width: 100%;
        margin-bottom: 40px;
    }

    .footer-col-about,
    .footer-col-links,
    .footer-col-newsletter {
        flex-basis: auto;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-col-links {
        justify-content: center;
        text-align: left;
    }

    .footer-nav-group {
        text-align: center;
    }

    .footer-nav-group ul {
        display: inline-block; 
        text-align: left; 
    }

    .newsletter-form {
        max-width: 400px;
        min-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 40px 15px 15px;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .footer-col-links {
        flex-direction: column;
        gap: 20px;
    }

    .footer-col-links .footer-nav-group {
        width: 100%;
        text-align: center;
    }
}