/* --- Global Variables --- */
:root {
    /* Brand Colors */
    --primary-color: #b9201a;
    --primary-hover: #b51c16;
    --secondary-color: #ff6a00;
    --brand-dark: #111111;
    --text-dark: #333333;
    --text-muted: #757575;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --footer-bg: #7a1208; /* Deep Maroon */

    /* Typography */
    --font-primary: "Nunito", sans-serif;
    --font-secondary: "Playfair Display", serif;
    --font-size-base: 16px;
    --font-size-sm: 14px;
    --font-size-lg: 18px;

    /* Layout & Utilities */
    --transition-speed: 0.3s;
    --border-radius: 8px;
    --box-shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
    --box-shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}
.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}
.mt-20 {
    margin-top: 20px;
}
.mt-40 {
    margin-top: 60px;
}
.pb-40 {
    padding-bottom: 60px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-40 {
    margin-bottom: 60px;
}
.my-40 {
    margin-top: 60px;
    margin-bottom: 60px;
}
.ms-10 {
    margin-left: 10px;
}
.py-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}
html,
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: #fff9e9;
    font-size: var(--font-size-base);
    overflow-x: hidden;
    width: 100%;
}

/* Ensure background freezes when Bootstrap modal is open */
body.modal-open,
html:has(body.modal-open) {
    overflow: hidden !important;
}

.khwahish-app-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
}
.section-title {
    font-family: var(--font-secondary);
    font-size: 3rem;
    color: #4a0805;
    font-weight: 700;
    margin-bottom: 20px;
}
h4.eyebrow-text {
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #da251d;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
    letter-spacing: 0.6px;
}
p {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
}
/* --- Premium Header Styles --- */
.premium-site-header {
    width: 100%;
    z-index: 1050;
    position: sticky;
    top: 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
}

.premium-site-header .top-bar {
    background: linear-gradient(135deg, #f17900 0%, #da251d 100%);
    color: var(--bg-white);
    font-size: 13px;
    padding: 8px 0;
    letter-spacing: 0.5px;
}

.premium-site-header .top-bar svg {
    vertical-align: text-top;
}

.premium-site-header .top-bar a {
    color: var(--bg-white);
    text-decoration: none;
    margin-left: 20px;
    transition: opacity var(--transition-speed) ease;
}

.premium-site-header .top-bar a:hover {
    opacity: 0.8;
}

.premium-site-header .main-header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transition: all var(--transition-speed) ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.premium-site-header .main-header .logo-wrapper img {
    height: 75px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-site-header .main-header .logo-wrapper:hover img {
    transform: scale(1.04);
}

.premium-site-header .main-header .premium-nav ul {
    list-style: none;
    gap: 45px;
}

.premium-site-header .main-header .premium-nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
    transition: color var(--transition-speed) ease;
}

.premium-site-header .main-header .premium-nav ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all var(--transition-speed) ease;
    transform: translateX(-50%);
}

.premium-site-header .main-header .premium-nav ul li a:hover,
.premium-site-header .main-header .premium-nav ul li a.active {
    color: var(--primary-color);
}

.premium-site-header .main-header .premium-nav ul li a:hover::after,
.premium-site-header .main-header .premium-nav ul li a.active::after {
    width: 100%;
}

.premium-site-header .main-header .header-icons {
    gap: 10px;
}

.premium-site-header .main-header .header-icons .icon-btn {
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    transition:
        color var(--transition-speed) ease,
        transform var(--transition-speed) ease;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-site-header .main-header .header-icons .icon-btn:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.premium-site-header .main-header .header-icons .cart-btn-premium {
    text-decoration: none;
    color: var(--text-dark);
    position: relative;
    display: flex;
    align-items: center;
    transition: transform var(--transition-speed) ease;
    padding: 5px;
}

.premium-site-header .main-header .header-icons .cart-btn-premium:hover {
    transform: translateY(-2px);
    color: var(--primary-color);
}

.premium-site-header .main-header .header-icons .cart-btn-premium .badge {
    position: absolute;
    top: -2px;
    right: -6px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 11px;
    font-weight: bold;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-white);
    box-shadow: 0 2px 5px rgba(218, 37, 29, 0.4);
}

/* --- Premium Footer Styles --- */
.premium-site-footer {
    background-color: var(--footer-bg);
    color: #e0e0e0;
    margin-top: 60px;
    font-family: var(--font-primary);
}

.premium-site-footer .footer-newsletter {
    background: linear-gradient(135deg, #f17900 0%, #da251d 100%);
    padding: 50px 0;
    color: var(--bg-white);
}

.premium-site-footer .footer-newsletter .newsletter-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.premium-site-footer .footer-newsletter .newsletter-desc {
    font-size: 16px;
    opacity: 0.9;
}

.premium-site-footer .footer-newsletter .premium-input {
    border-radius: 30px;
    padding: 12px 25px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.premium-site-footer .footer-newsletter .premium-input:focus {
    outline: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.premium-site-footer .footer-newsletter .btn-premium-subscribe {
    background-color: var(--footer-bg);
    color: var(--bg-white);
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 600;
    border: 2px solid var(--footer-bg);
    transition: all var(--transition-speed) ease;
}

.premium-site-footer .footer-newsletter .btn-premium-subscribe:hover {
    background-color: transparent;
    color: var(--footer-bg);
    border-color: var(--bg-white);
}

.premium-site-footer .footer-main {
    padding: 70px 0;
}

.premium-site-footer .footer-brand-section .footer-logo {
    height: 60px;
    filter: brightness(0) invert(1);
}

.premium-site-footer .footer-brand-section .brand-story {
    color: #a0a0a0;
    line-height: 1.7;
    font-size: 15px;
}

.premium-site-footer .social-links .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--bg-white);
    margin-right: 12px;
    transition: all var(--transition-speed) ease;
}

.premium-site-footer .social-links .social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.premium-site-footer .footer-title {
    color: var(--bg-white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.premium-site-footer .footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.premium-site-footer .footer-links ul li {
    margin-bottom: 15px;
}

.premium-site-footer .footer-links ul li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    font-size: 15px;
    display: inline-block;
}

.premium-site-footer .footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.premium-site-footer .footer-contact .contact-info li {
    color: #a0a0a0;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.6;
}

.premium-site-footer .footer-contact .contact-info li .text-primary {
    color: var(--primary-color) !important;
    margin-top: 4px;
}

.premium-site-footer .footer-bottom {
    background-color: #1a1a1a;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-site-footer .footer-bottom .copyright {
    color: #757575;
    font-size: 14px;
}

/* --- UI Components & Utilities --- */
.btn-primary-custom {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    border: 2px solid var(--primary-color);
}

.btn-primary-custom:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline-custom {
    display: inline-block;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 30px;
    border-radius: 30px;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

/* --- Section Headings --- */
.section-heading {
    text-align: center;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-heading::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* --- Home Page Specific Styles --- */
/* --- Premium Slider Hero --- */
.slider-hero {
    position: relative;
    height: calc(100vh - 15vh);
    min-height: 600px;
    width: 100%;
}

.slider-hero #premiumHeroSlider {
    height: 100%;
}

.slider-hero .slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 10s ease;
}

.slider-hero .carousel-item.active .slider-image {
    transform: scale(1);
}

.slider-hero .slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    ); */
    background: linear-gradient(
        to right,
        rgb(0 0 0 / 14%) 0%,
        rgb(0 0 0 / 8%) 50%,
        rgb(0 0 0 / 18%) 100%
    );
}

.slider-hero .slider-content {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: 0.3s;
}

.slider-hero .carousel-item.active .slider-content {
    opacity: 1;
    transform: translateY(0);
}

.slider-hero .slider-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
}

.slider-hero .slider-title {
    font-size: 75px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 25px;
    font-family: "Playfair Display", serif;
}

.slider-hero .text-primary-brand {
    color: var(--primary-color);
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 700;
}

.slider-hero .slider-desc {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 90%;
}

.slider-hero .btn-slider-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 45px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(218, 37, 29, 0.4);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.slider-hero .btn-slider-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: none;
}

/* Custom Indicators */
.slider-hero .custom-indicators {
    bottom: 40px;
    gap: 15px;
}

.slider-hero .custom-indicators button {
    width: 30px !important;
    height: 3px !important;
    background-color: rgba(255, 255, 255, 0.3) !important;
    border: none !important;
    transition: all 0.4s ease !important;
}

.slider-hero .custom-indicators button.active {
    width: 60px !important;
    background-color: var(--primary-color) !important;
}

/* Custom Controls */
.slider-hero .custom-control {
    width: 80px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-hero:hover .custom-control {
    opacity: 1;
}

.slider-hero .control-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.slider-hero .custom-control:hover .control-icon {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

@media (max-width: 991px) {
    .slider-hero .slider-title {
        font-size: 45px;
    }
    .slider-hero .slider-desc {
        font-size: 16px;
    }
    .slider-hero .custom-control {
        display: none;
    }
}

/* Utilities */
.text-primary-brand {
    color: var(--primary-color) !important;
}

.text-dark-brand {
    color: var(--text-dark) !important;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.bg-light-premium {
    background-color: #f9f7f4;
}

/* --- Corporate About Section --- */
.corporate-about-section {
    overflow: hidden;
}

.corporate-about-section .about-image-wrapper {
    position: relative;
    z-index: 1;
}

.corporate-about-section .about-image-wrapper::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 1rem;
    z-index: -1;
    opacity: 0.2;
}

.corporate-about-section .about-img {
    position: relative;
    z-index: 2;
    object-fit: cover;
    height: 600px;
    width: 100%;
}

.corporate-about-section .experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--primary-color);
    color: white;
    padding: 25px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 3;
    border: 5px solid #fdfaf6;
}

.corporate-about-section .experience-badge .number {
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.corporate-about-section .experience-badge .text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.corporate-about-section .about-content-wrapper {
    position: relative;
    z-index: 2;
}

.corporate-about-section .mission-box {
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(241, 121, 0, 0.05) 0%,
        rgba(241, 121, 0, 0) 100%
    );
    border: 1px solid rgba(241, 121, 0, 0.15);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition:
        transform var(--transition-speed) ease,
        box-shadow var(--transition-speed) ease;
    margin-top: 40px;
}

.corporate-about-section .mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(241, 121, 0, 0.1);
}

.corporate-about-section .mission-icon {
    position: absolute;
    top: -22px;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(241, 121, 0, 0.4);
}

.corporate-about-section .brand-signature {
    font-family: Georgia, serif;
}

@media (max-width: 991px) {
    .corporate-about-section .experience-badge {
        bottom: 20px;
        right: 20px;
        width: 120px;
        height: 120px;
    }
    .corporate-about-section .experience-badge .number {
        font-size: 30px;
    }
    .corporate-about-section .about-img {
        height: 400px;
    }
}

/* --- Quote Banner Section --- */
.quote-banner-section {
    position: relative;
    background-image: url("../images/quote_bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    text-align: center;
    padding: 5rem 0;
}

.quote-banner-section .container {
    padding: 3rem 0;
    margin: 3rem auto;
    position: relative;
    z-index: 2;
}

.quote-banner-section .quote-icon {
    margin-bottom: 0;
    width: 50px;
    height: 45px;
}

.quote-banner-section .quote-title {
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 0;
    font-family: Georgia, serif;
    font-style: italic;
    line-height: 1.5;
}

.quote-banner-section .quote-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(30, 30, 30, 0.4) 0%,
        rgba(30, 30, 30, 0.8) 100%
    );
    z-index: 1;
}

/* --- Shared Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 14px;
}

.section-header .title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 0.5rem;
}

.quote-banner-section .quote-icon {
    color: var(--primary-color);
    opacity: 0.8;
}

@media (max-width: 991px) {
    .quote-banner-section h2 {
        font-size: 32px;
    }
}

/* --- Why Our Tea Section --- */

.why-our-tea-section .tea-row {
    justify-content: center;
    margin-top: 3rem;
    row-gap: 40px;
}

.why-our-tea-section .tea-col {
    text-align: center;
}

.why-our-tea-section .tea-item .item-title {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 22px;
    font-family: Georgia, serif;
    letter-spacing: 0.4px;
}

.why-our-tea-section .tea-item .item-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: var(--font-primary);
    font-weight: 700;
}

.why-our-tea-section .tea-item .item-title a:hover {
    color: var(--primary-color);
}
.why-our-tea-section .tea-circle-wrapper {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* .why-our-tea-section .tea-circle-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 1px dashed #ced4da;
    border-radius: 50%;
    transition: border-color 0.4s ease;
    z-index: 1;
}

.why-our-tea-section .tea-circle-wrapper:hover::before {
    border-color: var(--primary-color);
    animation: rotateDashedBorder 10s linear infinite;
} */

@keyframes rotateDashedBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.why-our-tea-section .tea-circle {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.why-our-tea-section .tea-circle img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.6s ease;
}
.why-our-tea-section .tea-circle.rotate-item img {
    transform: rotate(180deg);
}
.why-our-tea-section .tea-circle-wrapper:hover .tea-circle img {
    transform: scale(1.1);
}
.why-our-tea-section .tea-circle-wrapper:hover .tea-circle.rotate-item img {
    transform: rotate(180deg) scale(1.1);
}

/* --- Featured Products Section --- */
.featured-products {
    background-color: var(--light-bg);
}

.featured-products .premium-card {
    border: none;
    background-color: var(--bg-white);
    text-align: left;
    padding-bottom: 0;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); */
    box-shadow:
        rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
        rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition:
        transform var(--transition-speed) ease,
        box-shadow var(--transition-speed) ease;
    height: 100%;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.premium-card .product-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background-color: #f9f9f9;
}

.premium-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.premium-card:hover .product-image img {
    transform: scale(1.05);
}

.premium-card .badge-premium {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #f17900 0%, #da251d 100%);
    color: white;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.premium-card h3 {
    margin: 0 0 5px 0;
    font-size: 22px;
    color: var(--text-dark);
    font-weight: 600;
}

.premium-card .price {
    margin-bottom: 0;
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.btn-add-cart {
    background-color: #f5f5f5;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 18px;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, #f17900 0%, #da251d 100%);
    color: white;
    transform: rotate(10deg) scale(1.1);
}

/* --- Split Testimonial Section --- */
.testimonial-split {
    overflow: hidden;
}

.testimonial-left-panel {
    background-color: #f9f6f0;
    display: flex;
    align-items: center;
}

.testimonial-content-wrapper {
    padding: 8rem 5rem;
    max-width: 785px;
    margin-left: auto;
}

.testimonial-content-wrapper .subtitle {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.testimonial-content-wrapper .title {
    font-size: 3rem;
    font-weight: 700;
    color: #161a15;
    margin-bottom: 3rem;
}

.testimonial-carousel-container {
    position: relative;
}

.testimonial-carousel-container .quote-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.testimonial-carousel-container .testimonial-quote {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    font-family: var(--font-primary);
    margin-bottom: 2.5rem;
}

.testimonial-carousel-container .testimonial-author .author-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #161a15;
    margin-bottom: 0.3rem;
}

.testimonial-carousel-container .testimonial-author .author-info span {
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-carousel-container .testimonial-controls {
    display: flex;
    gap: 15px;
    margin-top: 3rem;
}

.testimonial-carousel-container .testimonial-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: white;
    color: #161a15;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonial-carousel-container .testimonial-controls button:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.testimonial-right-panel {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.testimonial-right-panel .testimonial-img {
    width: 100%;
    height: 100%;
    max-height: 765px;
    object-fit: cover;
    flex-grow: 1;
}

@media (max-width: 991px) {
    .testimonial-content-wrapper {
        padding: 5rem 2rem;
        margin: 0 auto;
        max-width: 100%;
    }
    .testimonial-right-panel {
        height: 400px;
        min-height: 400px;
    }
}

/* --- Footer Design --- */
.site-footer {
    /* background-color: var(--footer-bg); */
    /* background: radial-gradient(
        ellipse at 50% 45%,
        #c51f13 0%,
        #b5160f 35%,
        #a20f0b 70%,
        #8f0807 100%
    ); */
    background: url("../images/banners/bg.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    color: #a0a69d;
    padding-top: 5rem;
    font-family: var(--font-primary);
}

.newsletter-glow-bg {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    filter: blur(100px);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 0;
}

.footer-newsletter-glass {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem 4rem;
    margin-bottom: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.footer-newsletter-glass .newsletter-title {
    font-size: 2.2rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-newsletter-glass .newsletter-desc {
    font-size: 0.95rem;
    color: #a0a69d;
    margin: 0;
}

.newsletter-form-inline {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
    margin-top: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-form-inline:focus-within {
    border-bottom-color: var(--primary-color);
}

.newsletter-form-inline input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    padding: 10px 0;
    flex-grow: 1;
    outline: none;
}

.newsletter-form-inline input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-form-inline button {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.newsletter-form-inline button:hover {
    color: #fff;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    width: 100%;
    margin-top: 4rem;
}

.site-footer .footer-main {
    padding: 3rem 0 1rem 0;
}

.site-footer .footer-col {
    margin-bottom: 3rem;
}

.site-footer .footer-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.site-footer .footer-about-text {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #fff;
    max-width: 360px;
    opacity: 0.8;
}

.site-footer .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #e6a323;
    border-radius: 13px;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    font-size: 22px;
    text-decoration: none;
    border: 2px solid #e6a323;
}

.site-footer .footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.site-footer .footer-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.site-footer .footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #e6a323;
}

.site-footer .footer-links {
    list-style: none;
    padding-left: 0 !important;
    margin: 0;
}

.site-footer .footer-links li {
    margin-bottom: 0.8rem;
}

.site-footer .footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
    opacity: 0.8;
}

.site-footer .footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #e6a323;
    transition: width 0.3s ease;
}

.site-footer .footer-links a:hover {
    color: white;
    opacity: 1;
}

.site-footer .footer-links a:hover::after {
    width: 100%;
}

.site-footer .footer-contact-info {
    list-style: none;
    padding-left: 0 !important;
    margin: 0;
}

.site-footer .footer-contact-info li {
    display: flex;
    margin-bottom: 1.2rem;
    align-items: flex-start;
}

.site-footer .footer-contact-info .icon-box {
    color: #e6a323;
    font-size: 1.1rem;
    margin-right: 1rem;
    margin-top: 3px;
}

.site-footer .footer-contact-info .info-content {
    line-height: 1.6;
    font-size: 0.95rem;
    color: #fff;
    opacity: 0.8;
}
.site-footer .footer-contact-info .info-content a {
    color: #fff;
    text-decoration: none;
}
.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    font-size: 0.9rem;
}

.site-footer .footer-bottom p {
    margin-bottom: 0;
    color: #fff;
    text-align: center;
}

.site-footer .footer-bottom-right {
    text-align: right;
}

.site-footer .payment-methods {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.site-footer .payment-methods iconify-icon {
    font-size: 1.5rem;
}
.site-footer .col-third {
    padding-left: 60px;
}
.site-footer .col-second {
    padding-left: 35px;
}

@media (max-width: 991px) {
    .site-footer {
        padding-top: 12rem;
    }
    .site-footer .newsletter-form {
        flex-direction: column;
        justify-content: center;
    }
    .site-footer .newsletter-card {
        text-align: center;
    }
    .site-footer .footer-bottom-right {
        text-align: center;
        margin-top: 1rem;
    }
    .site-footer .payment-methods {
        justify-content: center;
    }
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

/* --- About Hero --- */
.about-hero-section {
    position: relative;
    padding: 12rem 0 8rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(17, 17, 17, 0.8),
        rgba(17, 17, 17, 0.5)
    );
    z-index: 1;
}

.about-hero-section .relative-z {
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-family: var(--font-secondary);
    font-size: 5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
}

/* --- About Story Section --- */
.about-story-images {
    position: relative;
    padding-right: 2rem;
    padding-bottom: 2rem;
}

.about-story-images .img-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-story-images .img-floating {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    border-radius: 20px;
    border: 10px solid #fff9e9;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    z-index: 2;
}

.about-story-images .img-floating img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-story-images .img-floating:hover img {
    transform: scale(1.1);
}

.experience-circle {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 140px;
    height: 140px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 15px 35px rgba(218, 37, 29, 0.4);
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.experience-circle .number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-circle .text {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 5px;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

.signature-block {
    border-left: 3px solid var(--primary-color);
    padding-left: 1.5rem;
}

.signature-block .founder-name {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    color: #161a15;
    margin-bottom: 0.2rem;
}

.signature-block .founder-title {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* --- About Values Section (Minimal Light) --- */
.about-values-section {
    /* background-color: #f9f6f0; */
    position: relative;
    overflow: hidden;
}

.value-minimal-card {
    background-color: #fff4dc;
    padding: 3.5rem 2.5rem;
    border-radius: 12px;
    height: 100%;
    position: relative;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    overflow: hidden;
    z-index: 1;
}

.value-minimal-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--primary-color);
    transition: height 0.4s ease;
    z-index: 2;
}

.value-minimal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* .value-minimal-card:hover::before {
    height: 100%;
} */

.value-minimal-card .value-number {
    font-family: var(--font-secondary);
    font-size: 4.5rem;
    font-weight: 700;
    color: rgba(218, 37, 29, 0.08);
    line-height: 1;
    position: absolute;
    top: 8px;
    right: 2rem;
    transition: color 0.4s ease;
    z-index: 0;
}

.value-minimal-card:hover .value-number {
    color: rgba(218, 37, 29, 0.15);
}

.value-minimal-card .value-content {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
}

.value-minimal-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    font-weight: 700;
    color: #161a15;
    margin-bottom: 1rem;
}

.value-minimal-card p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}
.about-values-section {
    padding: 100px 0;
}
.about-values-section .inner-wrapper {
    margin-top: 38px;
}
@media (max-width: 991px) {
    .about-hero-title {
        font-size: 3.5rem;
    }
    .about-story-images {
        margin-bottom: 1.2rem;
        padding-right: 0;
    }
    .about-story-images .img-floating {
        width: 60%;
        right: -10px;
        bottom: -20px;
    }
    .experience-circle {
        width: 110px;
        height: 110px;
        top: -15px;
        left: -10px;
    }
    .experience-circle .number {
        font-size: 2rem;
    }
}

/* --- Minimalist Counter Section --- */
.counter-divider-row {
    position: relative;
}
.counter-divider-item {
    position: relative;
}
@media (min-width: 992px) {
    .counter-divider-item:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 10%;
        right: 0;
        width: 1px;
        height: 80%;
        background-color: rgba(0, 0, 0, 0.1);
    }
}

/* --- Global Breadcrumb Component --- */
.global-breadcrumb-section {
    position: relative;
    /* padding: 5rem 0 4rem 0; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    line-height: 0;
}

.global-breadcrumb-section .breadcrumb-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    z-index: 0;
}

/* .global-breadcrumb-section .breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgb(22 26 21 / 0%),
        rgb(22 26 21 / 21%)
    );
    z-index: 1;
} */

.global-breadcrumb-section .breadcrumb-content {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
}

.global-breadcrumb-section .breadcrumb-page-title {
    font-family: var(--font-secondary);
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.global-breadcrumb-section .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
}

.global-breadcrumb-section .breadcrumb-item {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.global-breadcrumb-section .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.global-breadcrumb-section .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.global-breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    line-height: 1;
    padding: 0 10px;
}

@media (max-width: 991px) {
    .global-breadcrumb-section {
        padding: 0;
    }
    .global-breadcrumb-section .breadcrumb-page-title {
        font-size: 2.8rem;
    }
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

/* --- Contact Info Cards --- */
.contact-info-card {
    background-color: #fff4dc;
    border-radius: 15px;
    padding: 3rem 2rem;
    height: 100%;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); */
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-info-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(218, 37, 29, 0.08);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}

.contact-info-card:hover .icon-wrapper {
    background-color: var(--primary-color);
    color: #fff;
}

.contact-info-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #161a15;
}

.contact-info-card p {
    color: #757575;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.contact-info-card .contact-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info-card .contact-link:hover {
    opacity: 0.8;
}

.contact-info-card .contact-text {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
}

/* --- Contact Form Section --- */
.contact-form-wrapper {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.contact-form-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.contact-form-content {
    padding: 5rem 4rem;
    background-color: #fff4dc;
    height: 100%;
}

.modern-contact-form .form-floating .form-control {
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    background: transparent;
    padding-left: 0;
    font-weight: 500;
    box-shadow: none;
    transition: border-color 0.3s ease;
}

.modern-contact-form .form-floating .form-control:focus {
    border-color: var(--primary-color);
}

.modern-contact-form .form-floating label {
    padding-left: 0;
    color: #757575;
}

.modern-contact-form .form-floating .form-control:focus ~ label,
.modern-contact-form
    .form-floating
    .form-control:not(:placeholder-shown)
    ~ label {
    color: var(--primary-color);
    transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem);
}

.modern-contact-form .premium-btn {
    background: linear-gradient(135deg, #f17900 0%, #da251d 100%);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-contact-form .premium-btn:hover {
    background: linear-gradient(135deg, #da251d 0%, #f17900 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(218, 37, 29, 0.4);
}

/* --- Contact Map Section --- */
.contact-map-section {
    line-height: 0;
}
.contact-map-section iframe {
    filter: grayscale(20%) contrast(1.1);
}

@media (max-width: 991px) {
    .contact-form-content {
        padding: 3rem 2rem;
    }
}

/* ==========================================================================
   MEGA MENU STYLES
   ========================================================================== */
.main-header .container {
    position: relative;
}

.premium-nav {
    position: static;
}

.premium-nav ul {
    position: static;
}

.premium-nav .has-mega-menu {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 15px;
    width: calc(100% - 30px); /* Account for container padding */
    background-color: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1050;
    padding: 3rem;
    border-radius: 0 0 15px 15px;
    border-top: 2px solid var(--primary-color);
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu .mega-menu-content {
    padding-right: 3rem;
}

.mega-menu .mega-menu-content .mega-menu-title {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    color: #161a15;
    margin-bottom: 2rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
    text-transform: capitalize;
}

.mega-menu .mega-menu-content .mega-menu-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px !important;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu .mega-menu-content .mega-menu-list li a {
    color: var(--primary-color) !important;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 8px 0;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: capitalize;
    line-height: 1.4;
    background: #f9f6f0;
    padding: 16px 15px !important;
    border-radius: 8px;
    border: 1px solid #f9f6f0;
}

.mega-menu .mega-menu-content .mega-menu-list li a .mega-menu-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 10px;
    transition: transform 0.3s ease;
    opacity: 0.8;
}
.mega-menu .mega-menu-content .mega-menu-list li a::after {
    content: none !important;
}
.mega-menu .mega-menu-content .mega-menu-list li a:hover {
    color: #fff !important;
    background: linear-gradient(135deg, #f17900 0%, #da251d 100%);
    /* transform: translateX(5px); */
    /* border: 1px solid var(--primary-color); */
}

.mega-menu .mega-menu-content .mega-menu-list li a:hover .mega-menu-icon {
    transform: translateX(3px) rotate(15deg);
    opacity: 1;
    color: #fff !important;
}

.mega-menu .mega-menu-image-wrapper {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.mega-menu .mega-menu-image-wrapper .mega-menu-img {
    width: 100%;
    height: 100%;
    max-width: 300px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Packet Tea specific adjustments */
.mega-menu.packet-tea-mega-menu .mega-menu-content .mega-menu-list {
    grid-template-columns: 1fr;
}

.mega-menu.packet-tea-mega-menu .mega-menu-image-wrapper {
    background: transparent;
    box-shadow: none;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.mega-menu.packet-tea-mega-menu .mega-menu-image-wrapper .mega-menu-img {
    height: auto;
    max-height: 220px;
    max-width: 100%;
    object-fit: contain;
}

/* ==========================================================================
   PRODUCT PAGE STYLES
   ========================================================================== */
.product-details-section {
    padding: 100px 0;
}

.product-image-gallery {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.product-image-gallery .main-image-wrapper {
    flex-grow: 1;
    background: #fff4dc;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
    overflow: hidden; /* Important for zoom */
    position: relative;
    cursor: zoom-in;
    box-shadow:
        rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
        rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.product-image-gallery .main-product-img {
    max-height: 450px;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.2s ease-out; /* Smooth zoom transition */
    width: 100%;
}

/* Thumbnails Unique Slider Design */
.product-thumbnails-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 90px;
    flex-shrink: 0;
}

.product-thumbnails-vertical {
    width: 100%;
    height: 440px;
    position: relative;
    overflow: hidden;
}

.thumb-nav-btn {
    background: #ffffff;
    border: 1px solid #ebd9be;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ac170f;
    font-size: 16px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
    padding: 0;
}

.thumb-nav-btn:hover:not(.swiper-button-disabled) {
    background: #ac170f;
    color: #ffffff;
    border-color: #ac170f;
}

.thumb-nav-btn.swiper-button-disabled {
    opacity: 0.2;
    cursor: not-allowed;
    pointer-events: none;
}

.thumbnail-item {
    width: 100%;
    height: 80px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #fff4dc;
    transition: all 0.25s ease;
    position: relative;
    opacity: 0.55;
    border: 2px solid transparent;
    padding: 6px;
    box-sizing: border-box;
}

.thumbnail-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.25s ease;
}

.thumbnail-item.active {
    opacity: 1;
    border-color: #ac170f;
    background: #fff4dc;
    box-shadow: 0 6px 16px rgba(172, 23, 15, 0.15);
}

.thumbnail-item:hover:not(.active) {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .product-image-gallery {
        flex-direction: column-reverse;
    }
    .product-thumbnails-wrapper {
        width: 100%;
        height: auto;
        flex-direction: row;
        justify-content: center;
        margin-top: 15px;
    }
    .product-thumbnails-vertical {
        width: calc(100% - 70px);
        height: 76px;
    }
    .thumb-nav-btn.thumb-prev iconify-icon {
        transform: rotate(-90deg);
    }
    .thumb-nav-btn.thumb-next iconify-icon {
        transform: rotate(-90deg);
    }
    .thumbnail-item {
        width: 72px !important;
        height: 72px !important;
    }
}

.product-info-content {
    padding-left: 2rem;
}

.product-info-content .product-main-title {
    font-family: var(--font-secondary);
    font-size: 2.8rem;
    font-weight: 700;
    color: #161a15;
}

.product-info-content .product-meta {
    font-size: 1rem;
    color: #777;
    font-weight: 500;
    margin-top: 10px;
}

.product-info-content .product-meta a {
    color: var(--primary-color);
    text-decoration: none;
}

.product-info-content .product-description {
    margin-top: 20px;
}

.product-info-content .product-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.product-info-content .product-variations {
    margin-top: 30px;
}

.product-info-content .variation-title {
    font-size: 16px;
    font-weight: 700;
    color: #161a15;
    margin-bottom: 20px;
}

.product-info-content .weight-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.product-info-content .weight-radio {
    display: none;
}

.product-info-content .weight-label {
    display: inline-block;
    padding: 10px 25px;
    background: #fff4dc;
    border: 2px solid #fff4dc;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
        rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.product-info-content .weight-label:hover {
    border-color: rgba(218, 37, 29, 0.4);
    color: var(--primary-color);
}

.product-info-content .weight-radio:checked + .weight-label {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 5px 15px rgba(218, 37, 29, 0.2);
}

.product-info-content .btn-inquiry-premium {
    background: linear-gradient(135deg, #f17900 0%, #da251d 100%);
    color: var(--bg-white);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 20px rgba(218, 37, 29, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    justify-content: center;
}

.product-info-content .product-action {
    margin-top: 40px;
}

.product-info-content .btn-inquiry-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(218, 37, 29, 0.3);
    color: var(--bg-white);
}

.product-info-content .inquiry-note {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
    margin-top: 10px;
}

@media (max-width: 991px) {
    .product-info-content {
        padding-left: 0;
        margin-top: 40px;
    }
}

/* ==========================================================================
   INQUIRY MODAL STYLES
   ========================================================================== */
.premium-inquiry-modal .modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background: #fff9e9;
}

.premium-inquiry-modal .btn-close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #999;
    transition: all 0.2s ease;
}

.premium-inquiry-modal .btn-close-modal:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.inquiry-modal-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0 40px 40px;
    background: transparent;
}

.inquiry-modal-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.inquiry-modal-form-wrapper {
    padding: 50px;
    background: #fff9e9;
}

.inquiry-modal-title {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    color: #161a15;
    margin-bottom: 5px;
}

.inquiry-modal-subtitle {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 30px;
}

.premium-inquiry-form .form-group {
    margin-bottom: 20px;
}

.premium-inquiry-form label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

.premium-inquiry-form .premium-form-control {
    width: 100%;
    background: #fff4dc;
    border: 1px solid transparent;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}

.premium-inquiry-form .premium-form-control:focus {
    background: #fff4dc;
    border-color: #ddd;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.premium-inquiry-form .premium-form-control::placeholder {
    color: #555;
    opacity: 0.6;
    font-size: 14px;
}

.btn-inquiry-submit {
    width: auto;
    min-width: 180px;
    background: linear-gradient(135deg, #f17900 0%, #da251d 100%);
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(218, 37, 29, 0.2);
}

.btn-inquiry-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(218, 37, 29, 0.3);
}

.premium-inquiry-modal .modal-wrapper {
    max-width: calc(100% - 35%) !important;
}

/* ==========================================================================
   PREMIUM PRODUCT CARDS (CUSTOM DESCENT SELECTORS)
   ========================================================================== */
.premium-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    height: 100%;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.premium-card .premium-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.premium-card .premium-card-image {
    padding: 40px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    text-align: center;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-card .premium-card-image img {
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.premium-card:hover .premium-card-image img {
    transform: scale(1.05);
}

.premium-card .premium-card-info {
    padding: 30px;
    background: #fbf9f6;
    text-align: center;
    height: calc(100% - 320px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.premium-card .premium-card-info h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #161a15;
    margin-bottom: 12px;
    font-family: var(--font-secondary);
}

.premium-card .premium-card-info .cta-text {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.premium-card:hover .premium-card-info .cta-text {
    color: #da251d;
}

.premium-card .premium-card-info .cta-text iconify-icon {
    transition: transform 0.3s ease;
}

.premium-card:hover .premium-card-info .cta-text iconify-icon {
    transform: translateX(5px);
}

/* ==========================================================================
   ABOUT CLASSIC GRID
   ========================================================================== */
.about-classic-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 0;
}

.about-classic-grid .grid-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-classic-grid .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-classic-grid .grid-item:hover img {
    transform: scale(1.05);
}

.about-classic-grid .item-main {
    height: 485px;
    width: 100%;
}

.about-classic-grid .grid-bottom-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.about-classic-grid .item-half {
    height: 250px;
    flex: 1;
}

.about-classic-grid .experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.about-classic-grid .experience-badge .number {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-secondary);
}

.about-classic-grid .experience-badge .text {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
    color: #333;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .about-classic-grid {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .about-classic-grid .item-main {
        height: 250px;
    }
    .about-classic-grid .item-half {
        height: 180px;
    }
}

/* ==========================================================================
   PREMIUM NEWSLETTER SECTION
   ========================================================================== */
.premium-newsletter-section {
    padding: 60px 0 0 0;
    position: relative;
    z-index: 10;
    margin-bottom: -100px; /* Pull it down to overlap the footer beautifully */
}

.premium-newsletter-section .newsletter-wrapper {
    background: url("../images/quote_bg.jpg") center/cover no-repeat;
    border-radius: 24px;
    padding: 50px 60px;
    position: relative;
    overflow: hidden;
}

.premium-newsletter-section .newsletter-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(
        255,
        255,
        255,
        0.93
    ); /* Soft bright white overlay to pop out */
    z-index: 1;
}

.premium-newsletter-section .row {
    position: relative;
    z-index: 2;
}

.premium-newsletter-section .newsletter-heading {
    color: #8d160b; /* Deep maroon */
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--font-secondary);
}

.premium-newsletter-section .newsletter-subheading {
    color: #4f4034; /* Brownish grey */
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.premium-newsletter-form .input-group {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(141, 22, 11, 0.05);
    border-radius: 50px;
    padding: 6px;
    border: 1px solid rgba(141, 22, 11, 0.1);
}

.premium-newsletter-form .input-group-text {
    background: transparent;
    border: none;
    color: #8d160b;
    padding-left: 20px;
    font-size: 1.2rem;
}

.premium-newsletter-form .form-control {
    background: transparent;
    border: none;
    color: #4f4034;
    padding: 10px 15px;
}

.premium-newsletter-form .form-control::placeholder {
    color: rgba(79, 64, 52, 0.5);
}

.premium-newsletter-form .form-control:focus {
    box-shadow: none;
    background: transparent;
}

.premium-newsletter-form .btn-primary-custom {
    background: linear-gradient(135deg, #f17900 0%, #da251d 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.premium-newsletter-form .btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(218, 37, 29, 0.3);
}

.site-footer {
    padding-top: 30px;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .premium-newsletter-section {
        padding: 40px 15px 0 15px;
        margin-bottom: -60px;
    }
    .premium-newsletter-section .newsletter-wrapper {
        padding: 40px 30px;
    }
    .premium-newsletter-section .newsletter-heading {
        font-size: 1.8rem;
    }
    .premium-newsletter-form .input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }
    .premium-newsletter-form .input-group-text {
        display: none;
    }
    .premium-newsletter-form .form-control {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        margin-bottom: 15px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    .premium-newsletter-form .btn-primary-custom {
        width: 100%;
        border-radius: 50px;
    }
}

.premium-site-header .main-header .logo-wrapper {
    width: 160px;
    height: 70px;
    position: relative;
    z-index: 1060;
}

.premium-site-header .main-header .logo-wrapper img {
    height: 120px;
    position: absolute;
    top: 5px;
    left: 0;
    transition: transform 0.3s ease;
}

.premium-site-header .main-header .logo-wrapper:hover img {
    transform: scale(1.05);
}

.premium-site-header.header-transparent {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background: transparent;
    box-shadow: none;
    z-index: 1050;
}

.premium-site-header.header-transparent .top-bar {
    background: #c6331a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-site-header.header-transparent .main-header {
    background-color: #ac170f !important;
    backdrop-filter: none;
    border-bottom: none;
    padding-top: 10px;
    padding-bottom: 10px;
}

.premium-site-header.header-transparent .main-header .premium-nav ul li a {
    color: #ffffff;
    font-size: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.premium-site-header.header-transparent .main-header .premium-nav ul li a:hover,
.premium-site-header.header-transparent
    .main-header
    .premium-nav
    ul
    li
    a.active {
    color: #ffd05b;
}

.premium-site-header.header-transparent
    .main-header
    .premium-nav
    ul
    li
    a::after {
    background-color: #ffd05b;
}

.premium-site-header.header-transparent .main-header .header-icons .icon-btn,
.premium-site-header.header-transparent
    .main-header
    .header-icons
    .cart-btn-premium {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.premium-site-header.header-transparent
    .main-header
    .header-icons
    .icon-btn:hover,
.premium-site-header.header-transparent
    .main-header
    .header-icons
    .cart-btn-premium:hover {
    color: #ffd05b;
}

.premium-site-header.header-transparent
    .main-header
    .header-icons
    .cart-btn-premium
    .badge {
    border-color: #c6331a;
    box-shadow: none;
}

/* ==========================================================================
   NEW HOMEPAGE MOCKUP STYLES
   ========================================================================== */
/* ================= HERO SECTION ================= */
.new-hero-section {
    height: 100vh;
    min-height: 800px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.new-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../images/banners/home-banner.jpg") center/cover no-repeat;
    z-index: -2;
    animation: heroZoom 10s ease-out forwards;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}
.new-hero-section .hero-text-col {
    position: relative;
    z-index: 2;
    padding-left: 5%;
}

.new-hero-section .hero-text-col::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 40%;
    width: 150%;
    height: 180%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgb(255 246 230 / 89%) 0%,
        rgb(255 246 230 / 70%) 40%,
        #00000000 70%
    );
    z-index: -1;
    pointer-events: none;
}
.new-hero-section .hero-title {
    font-family: var(--font-secondary);
    font-size: 5rem;
    font-weight: 700;
    color: #4a0805;
    line-height: 1.1;
    margin-bottom: 20px;
}
.new-hero-section .hero-title .text-primary-brand {
    color: #da251d;
}
.title-divider {
    color: #e6a323;
    font-size: 2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}
.title-divider::before {
    content: "";
    height: 2px;
    width: 60px;
    background: linear-gradient(to right, transparent, #e6a323);
}
.title-divider::after {
    content: "";
    height: 2px;
    width: 60px;
    background: linear-gradient(to left, transparent, #e6a323);
}
.new-hero-section .hero-subtitle {
    font-size: 1.3rem;
    color: #a21c17;
    max-width: 450px;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 700;
    margin-top: 30px;
}
.new-hero-section .btn-hero-explore {
    background: #c12117;
    color: #fff;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    transition: all 0.3s ease;
}
.new-hero-section .btn-hero-explore:hover {
    background: #7a1208;
    color: #fff;
    transform: translateY(-2px);
}

/* ================= FEATURES STRIP ================= */
.features-strip {
    background: url("../images/banners/shape.png") center/100% 100% no-repeat;
    padding: 100px 0 80px 0; /* Extra padding to account for the curve */
    margin-top: -120px; /* Pull it up to overlap the hero image */
    position: relative;
    z-index: 3;
    width: 100%;
}
.features-strip .feature-box {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0 20px;
}
.features-strip .feature-box.feature-box-third,
.features-strip .feature-box.feature-box-fourth {
    top: 20px;
    position: relative;
}
.features-strip .feature-box img {
    width: auto;
    height: 70px;
    margin-bottom: 20px;
}
.features-strip .feature-box:last-child,
.features-strip .feature-box.border-0 {
    border-right: none;
}
.features-strip .feature-icon {
    font-size: 2.5rem;
    color: #e6a323;
    margin-bottom: 15px;
}
.features-strip .feature-title {
    color: #e6a323;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}
.features-strip .feature-desc {
    color: #fff;
    max-width: 210px;
    margin: 0 auto;
    margin-bottom: 0;
}

/* ================= SECTION HEADERS ================= */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header .header-icon {
    color: #e6a323;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.section-header .header-divider {
    height: 3px;
    width: 100px;
    background: #e6a323;
    margin: 20px auto 0;
}

/* ================= OUR PREMIUM TEAS ================= */
.premium-teas-section {
    padding: 100px 0;
}
.premium-teas-section .mockup-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
        rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(230, 163, 35, 0.2);
}
.premium-teas-section .card-image-bg {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    /* background: #fff4dc; */
}
.premium-teas-section .card-image-bg img {
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.premium-teas-section .mockup-card:hover .card-image-bg img {
    transform: scale(1.025) translateY(0px);
}

.premium-teas-section .card-info {
    padding: 30px 20px;
    text-align: center;
    background: #fff4dc;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.premium-teas-section .card-info h3 {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.premium-teas-section .card-info p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 25px;
}
.premium-teas-section .btn-card-shop {
    width: 100%;
    padding: 12px;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    color: #fff;
    transition: all 0.3s ease;
}
.premium-teas-section .btn-card-shop.btn-red {
    /* background: #aa251f; */
    background: linear-gradient(90deg, #be1e16 0%, #c21e13 50%, #c51b10 100%);
}
.premium-teas-section .btn-card-shop.btn-gold {
    background: #e6a323;
    color: #4a0805;
}
.premium-teas-section .btn-card-shop.btn-olive {
    background: #5d8233;
}
.premium-teas-section .btn-card-shop.btn-darkred {
    background: #4a0805;
}

.premium-teas-section .btn-card-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.premium-teas-section .btn-view-all {
    background: transparent;
    color: #aa251f;
    border: 2px solid #aa251f;
    padding: 12px 40px;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.premium-teas-section .btn-view-all:hover {
    background: #aa251f;
    color: #fff;
}

/* ================= OUR STORY ================= */
.story-section {
    padding: 0;
    margin-top: 60px;
}
.story-section p {
    font-size: 16px;
}
.story-section .story-subtitle {
    color: #e6a323;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.story-section .story-subtitle::before {
    content: "";
    width: 40px;
    height: 2px;
    background: #e6a323;
}
.story-section .story-title {
    font-family: var(--font-secondary);
    font-size: 4rem;
    color: #4a0805;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}
.story-section .story-title .text-primary-brand {
    color: #da251d;
}
.story-section .story-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    max-width: 500px;
}
.story-section .story-img-wrapper {
    width: 100%;
    height: 600px;
    position: relative;
    padding-left: 16px;
}
.story-section .story-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to right, transparent 0%, black 25%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%);
}

.why-choose-section .why-icon-box {
    text-align: center;
}
.why-choose-section .why-icon-box .icon-circle {
    width: 100px;
    height: 100px;
    border: 2px solid #e6a323;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 3rem;
    color: #e6a323;
}
.why-choose-section .why-icon-box h4 {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    font-weight: 700;
    color: #4a0805;
    margin-bottom: 15px;
}
.why-choose-section .why-icon-box p {
    max-width: 200px;
    margin: 0 auto;
}

/* ================= TESTIMONIALS ================= */
.testimonials-section .testimonial-card {
    background: #fdfaf3;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(230, 163, 35, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.testimonials-section .quote-icon {
    font-family: var(--font-secondary);
    font-size: 5rem;
    color: #e6a323;
    line-height: 0;
    margin-top: 30px;
    margin-bottom: 20px;
}
.testimonials-section .review-text {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 25px;
}
.testimonials-section .reviewer-name {
    font-weight: 700;
    color: #4a0805;
    margin-bottom: 10px;
}
.testimonials-section .stars {
    color: #e6a323;
    font-size: 1.2rem;
}
.testimonials-section .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 3rem;
    color: #a21c17;
    z-index: 10;
}
.testimonials-section .nav-arrow.left-arrow {
    left: 0;
}
.testimonials-section .nav-arrow.right-arrow {
    right: 0;
}
.story-section .story-text-col {
    padding-left: 58px;
    padding-right: 44px;
}
.story-section .title-divider {
    justify-content: flex-start;
}
.why-icon-box .icon-circle img {
    height: auto;
    width: 60px;
}
.why-icon-box .icon-circle img {
    height: auto;
    width: 60px;
}
.why-icon-box .icon-circle img.hygenic-icon {
    height: 55px;
    width: auto;
}
.why-choose-section .section-header .section-title {
    margin-bottom: 60px;
}
/* Swiper Pagination Styling */
.swiper-pagination-bullet {
    background-color: var(--primary-color) !important;
    opacity: 0.3 !important;
    width: 10px !important;
    height: 10px !important;
    transition: all var(--transition-speed) ease !important;
}
.swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 25px !important;
    border-radius: 10px !important;
}
.swiper-pagination {
    margin-top: 50px !important;
}
.testimonial-slider-container {
    padding-bottom: 20px;
}

/* Slider Sizing */
.testimonialSwiper {
    padding-top: 30px;
    padding-bottom: 75px !important;
}
.testimonialSwiper .swiper-slide {
    height: auto;
}
.premium-inquiry-modal {
    z-index: 9999;
}

@media (max-width: 991px) {
    .new-hero-section .hero-title {
        font-size: 3.5rem;
    }
    .story-section .story-img-wrapper img {
        mask-image: none;
        -webkit-mask-image: none;
    }
    .story-section .story-text-col {
        padding: 40px 20px;
    }
    .cta-banner-section .cta-bg-wrapper {
        background-position: left center;
    }
}

.kw-testimonial-section {
    background: #fff9e9;
    box-sizing: border-box;
    /* border-top: 1px solid #ead8b2;
    border-bottom: 1px solid #ead8b2; */
}

.kw-testimonial-section .kw-testimonial-wrapper {
    max-width: 1250px;
    margin: 0 auto;
}

.kw-testimonial-section .kw-testimonial-heading {
    text-align: center;
    margin-bottom: 48px;
}

.kw-testimonial-section .kw-heading-leaf {
    color: #e6a91a;
    font-size: 30px;
    line-height: 25px;
    height: 25px;
    transform: rotate(-10deg);
}
.kw-testimonial-section .kw-testimonial-slider {
    position: relative;
}

.kw-testimonial-section .kw-testimonial-card {
    position: relative;
    min-height: 215px;
    padding: 48px 25px 15px;
    background: #fff4dc;
    border-radius: 10px;
    border: 1px solid #f4dfb5;
    box-shadow: 0 5px 18px rgba(115, 55, 15, 0.08);
    box-sizing: border-box;
    text-align: center;
}

.kw-testimonial-section .kw-quote-icon {
    position: absolute;
    top: -27px;
    left: 50%;
    transform: translateX(-50%);

    width: 53px;
    height: 53px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f9c43b;
    border-radius: 50%;

    color: #6f160c;
    font-family: Georgia, serif;
    font-size: 47px;
    font-weight: 700;
    line-height: 1;

    box-shadow: 0 3px 8px rgba(120, 70, 10, 0.12);
}

.kw-testimonial-section .kw-testimonial-card p {
    margin: 0 auto 23px;
    color: #4f4034;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
}

.kw-testimonial-section .kw-testimonial-card h4 {
    margin: 0 0 5px;
    color: #c46c27;
    font-size: 16px;
    font-weight: 600;
}

.kw-testimonial-section .kw-stars {
    color: #efa900;
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 1;
}

/* =========================
   SLIDER ARROWS
========================= */

.kw-testimonial-section .kw-slider-arrow {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 35px;
    height: 55px;
    border: 0;
    background: transparent;
    color: #a62012;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
    padding: 0;
}

.kw-testimonial-section .kw-arrow-left {
    left: -58px;
}

.kw-testimonial-section .kw-arrow-right {
    right: -58px;
}

.kw-testimonial-section .kw-slider-arrow:hover {
    color: #741108;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {
    .kw-testimonial-section {
        padding-left: 50px;
        padding-right: 50px;
    }

    .kw-testimonial-section .kw-arrow-left {
        left: -42px;
    }

    .kw-testimonial-section .kw-arrow-right {
        right: -42px;
    }

    .kw-testimonial-section .kw-testimonial-card {
        padding-left: 18px;
        padding-right: 18px;
    }

    .kw-testimonial-section .kw-testimonial-card p {
        font-size: 14px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
    .kw-testimonial-section {
        padding: 30px 20px 40px;
    }

    .kw-testimonial-section .kw-testimonial-heading {
        margin-bottom: 42px;
    }

    .kw-testimonial-section .kw-testimonial-heading h2 {
        font-size: 28px;
    }

    .kw-testimonial-section .kw-heading-leaf {
        font-size: 25px;
    }

    .kw-testimonial-section .kw-testimonial-slider {
        display: block;
        padding: 0 25px;
    }

    .kw-testimonial-section .kw-testimonial-card {
        min-height: 220px;
        padding: 48px 20px 18px;
    }

    .kw-testimonial-section .kw-testimonial-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .kw-testimonial-section .kw-slider-arrow {
        width: 25px;
        font-size: 32px;
    }

    .kw-testimonial-section .kw-arrow-left {
        left: -2px;
    }

    .kw-testimonial-section .kw-arrow-right {
        right: -2px;
    }
}

/* ================= CTA BANNER ================= */
.cta-banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.cta-banner-section > img:first-child {
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 250px;
    display: block;
}

.cta-banner-section .cta-content {
    position: absolute;
    top: 50%;
    left: 65%;
    transform: translate(-50%, -50%);
    width: 50%;
    text-align: center;
    line-height: 1.5;
}

.cta-banner-section .cta-content h2 {
    color: #fff;
    font-family: var(--font-secondary);
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-banner-section > div > img {
    height: 24px;
    object-fit: contain;
}
.cta-banner-section .mobile-img {
    display: none !important;
}
@media (max-width: 768px) {
    .desktop-img {
        display: none !important;
    }
    .mobile-img {
        display: block !important;
    }
    .cta-banner-section > div {
        width: 90%;
        left: 50%;
    }
}

/* ================= PRELOADER ================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff9e9; /* matching body */
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}
#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}
.preloader-tea-cup {
    position: relative;
    width: 120px;
    height: 120px;
    animation: cupPulse 2s infinite ease-in-out;
}
@keyframes cupPulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.preloader-tea-cup .steam {
    position: absolute;
    bottom: 85px;
    width: 6px;
    height: 25px;
    background: #e6a323; /* gold steam */
    border-radius: 10px;
    opacity: 0;
    animation: teaSteam 1.5s infinite ease-in;
    filter: blur(1px);
}
.preloader-tea-cup .steam-1 {
    left: 40px;
    animation-delay: 0.2s;
}
.preloader-tea-cup .steam-2 {
    left: 57px;
    animation-delay: 0.6s;
}
.preloader-tea-cup .steam-3 {
    left: 74px;
    animation-delay: 1s;
}

@keyframes teaSteam {
    0% {
        transform: translateY(0) scaleX(1);
        opacity: 0;
    }
    40% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-30px) scaleX(2) scaleY(1.2);
        opacity: 0;
    }
}

.preloader-tea-cup .cup {
    position: absolute;
    bottom: 25px;
    left: 20px;
    width: 80px;
    height: 60px;
}
.preloader-tea-cup .cup-body {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 60px;
    background: #ffffff;
}

.kw-testimonial-section .kw-slider-arrow:hover {
    color: #741108;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {
    .kw-testimonial-section {
        padding-left: 50px;
        padding-right: 50px;
    }

    .kw-testimonial-section .kw-arrow-left {
        left: -42px;
    }

    .kw-testimonial-section .kw-arrow-right {
        right: -42px;
    }

    .kw-testimonial-section .kw-testimonial-card {
        padding-left: 18px;
        padding-right: 18px;
    }

    .kw-testimonial-section .kw-testimonial-card p {
        font-size: 14px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
    .kw-testimonial-section {
        padding: 30px 20px 40px;
    }

    .kw-testimonial-section .kw-testimonial-heading {
        margin-bottom: 42px;
    }

    .kw-testimonial-section .kw-testimonial-heading h2 {
        font-size: 28px;
    }

    .kw-testimonial-section .kw-heading-leaf {
        font-size: 25px;
    }

    .kw-testimonial-section .kw-testimonial-slider {
        display: block;
        padding: 0 25px;
    }

    .kw-testimonial-section .kw-testimonial-card {
        min-height: 220px;
        padding: 48px 20px 18px;
    }

    .kw-testimonial-section .kw-testimonial-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .kw-testimonial-section .kw-slider-arrow {
        width: 15px;
        font-size: 24px;
    }
    .kw-testimonial-section .kw-testimonial-card h4 {
        font-size: 14px;
    }
    .kw-testimonial-section .kw-arrow-left {
        left: -2px;
    }

    .kw-testimonial-section .kw-arrow-right {
        right: -2px;
    }
}

/* ================= CTA BANNER ================= */
.cta-banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.cta-banner-section > img:first-child {
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 250px;
    display: block;
}

.cta-banner-section .cta-content {
    position: absolute;
    top: 50%;
    left: 65%;
    transform: translate(-50%, -50%);
    width: 50%;
    text-align: center;
    line-height: 1.5;
}

.cta-banner-section .cta-content h2 {
    color: #fff;
    font-family: var(--font-secondary);
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-banner-section > div > img {
    height: 24px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .cta-banner-section > div {
        width: 90%;
        left: 50%;
    }
}

/* Tea Cup Loader Styles */
.tea-loader {
    --tea-color: #b9201a;
    width: 110px;
    height: auto;
    overflow: visible;
}

.tea-loader path,
.tea-loader ellipse {
    fill: none;
    stroke: var(--tea-color);
    stroke-width: 9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tea-cup-group {
    transform-box: fill-box;
    transform-origin: 50% 100%;
    animation: tea-cup-bob 2.8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

@keyframes tea-cup-bob {
    0% {
        transform: translateY(0) scale(1);
    }
    30% {
        transform: translateY(-3px) scale(1.015);
    }
    55% {
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

.tea-liquid {
    stroke-width: 5;
    opacity: 0.55;
    transform-box: fill-box;
    transform-origin: 50% 50%;
    animation: tea-liquid-ripple 2.8s ease-in-out infinite;
}

@keyframes tea-liquid-ripple {
    0%,
    100% {
        transform: scaleX(1) translateY(0);
        opacity: 0.4;
    }
    50% {
        transform: scaleX(1.04) translateY(1px);
        opacity: 0.65;
    }
}

.tea-loader .tea-steam-1,
.tea-loader .tea-steam-2,
.tea-loader .tea-steam-3 {
    transform-box: fill-box;
    transform-origin: 50% 100%;
    animation-timing-function: cubic-bezier(0.37, 0, 0.63, 1);
    animation-iteration-count: infinite;
}

.tea-loader .tea-steam-1 {
    animation-name: tea-steam-sway-a;
    animation-duration: 2.1s;
    animation-delay: 0s;
}
.tea-loader .tea-steam-2 {
    animation-name: tea-steam-sway-b;
    animation-duration: 2.3s;
    animation-delay: 0.25s;
}
.tea-loader .tea-steam-3 {
    animation-name: tea-steam-sway-a;
    animation-duration: 2.1s;
    animation-delay: 0.5s;
}

@keyframes tea-steam-sway-a {
    0% {
        transform: translateY(0) rotate(-11deg) scaleY(0.94);
        opacity: 0.55;
    }
    30% {
        transform: translateY(-2px) rotate(6deg) scaleY(1.02);
        opacity: 0.9;
    }
    60% {
        transform: translateY(-4px) rotate(-8deg) scaleY(1.05);
        opacity: 1;
    }
    100% {
        transform: translateY(-6px) rotate(10deg) scaleY(0.9);
        opacity: 0.4;
    }
}

@keyframes tea-steam-sway-b {
    0% {
        transform: translateY(-1px) rotate(9deg) scaleY(0.95);
        opacity: 0.5;
    }
    35% {
        transform: translateY(-3px) rotate(-7deg) scaleY(1.04);
        opacity: 0.95;
    }
    65% {
        transform: translateY(-5px) rotate(8deg) scaleY(1.02);
        opacity: 1;
    }
    100% {
        transform: translateY(-7px) rotate(-10deg) scaleY(0.88);
        opacity: 0.4;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tea-cup-group,
    .tea-liquid,
    .tea-loader .tea-steam-1,
    .tea-loader .tea-steam-2,
    .tea-loader .tea-steam-3 {
        animation: none !important;
    }
}

/* ==========================================================================
   PACKET TEA MEGAMENU WIDTH OVERRIDE
   ========================================================================== */
.packet-tea-mega-menu {
    width: 600px !important;
    min-width: 600px !important;
}

/* ================= CTA BANNER ================= */
.cta-banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.cta-banner-section > img:first-child {
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 250px;
    display: block;
}

.cta-banner-section .cta-content {
    position: absolute;
    top: 50%;
    left: 65%;
    transform: translate(-50%, -50%);
    width: 50%;
    text-align: center;
    line-height: 1.5;
}

.cta-banner-section .cta-content h2 {
    color: #fff;
    font-family: var(--font-secondary);
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-banner-section > div > img {
    height: 24px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .cta-banner-section > div {
        width: 90%;
        left: 50%;
    }
}

/* Tea Cup Loader Styles */
.tea-loader {
    --tea-color: #b9201a;
    width: 110px;
    height: auto;
    overflow: visible;
}

.tea-loader path,
.tea-loader ellipse {
    fill: none;
    stroke: var(--tea-color);
    stroke-width: 9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tea-cup-group {
    transform-box: fill-box;
    transform-origin: 50% 100%;
    animation: tea-cup-bob 2.8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

@keyframes tea-cup-bob {
    0% {
        transform: translateY(0) scale(1);
    }
    30% {
        transform: translateY(-3px) scale(1.015);
    }
    55% {
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

.tea-liquid {
    stroke-width: 5;
    opacity: 0.55;
    transform-box: fill-box;
    transform-origin: 50% 50%;
    animation: tea-liquid-ripple 2.8s ease-in-out infinite;
}

@keyframes tea-liquid-ripple {
    0%,
    100% {
        transform: scaleX(1) translateY(0);
        opacity: 0.4;
    }
    50% {
        transform: scaleX(1.04) translateY(1px);
        opacity: 0.65;
    }
}

.tea-loader .tea-steam-1,
.tea-loader .tea-steam-2,
.tea-loader .tea-steam-3 {
    transform-box: fill-box;
    transform-origin: 50% 100%;
    animation-timing-function: cubic-bezier(0.37, 0, 0.63, 1);
    animation-iteration-count: infinite;
}

.tea-loader .tea-steam-1 {
    animation-name: tea-steam-sway-a;
    animation-duration: 2.1s;
    animation-delay: 0s;
}
.tea-loader .tea-steam-2 {
    animation-name: tea-steam-sway-b;
    animation-duration: 2.3s;
    animation-delay: 0.25s;
}
.tea-loader .tea-steam-3 {
    animation-name: tea-steam-sway-a;
    animation-duration: 2.1s;
    animation-delay: 0.5s;
}

@keyframes tea-steam-sway-a {
    0% {
        transform: translateY(0) rotate(-11deg) scaleY(0.94);
        opacity: 0.55;
    }
    30% {
        transform: translateY(-2px) rotate(6deg) scaleY(1.02);
        opacity: 0.9;
    }
    60% {
        transform: translateY(-4px) rotate(-8deg) scaleY(1.05);
        opacity: 1;
    }
    100% {
        transform: translateY(-6px) rotate(10deg) scaleY(0.9);
        opacity: 0.4;
    }
}

@keyframes tea-steam-sway-b {
    0% {
        transform: translateY(-1px) rotate(9deg) scaleY(0.95);
        opacity: 0.5;
    }
    35% {
        transform: translateY(-3px) rotate(-7deg) scaleY(1.04);
        opacity: 0.95;
    }
    65% {
        transform: translateY(-5px) rotate(8deg) scaleY(1.02);
        opacity: 1;
    }
    100% {
        transform: translateY(-7px) rotate(-10deg) scaleY(0.88);
        opacity: 0.4;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tea-cup-group,
    .tea-liquid,
    .tea-loader .tea-steam-1,
    .tea-loader .tea-steam-2,
    .tea-loader .tea-steam-3 {
        animation: none !important;
    }
}

/* ==========================================================================
   PACKET TEA MEGAMENU WIDTH OVERRIDE
   ========================================================================== */
.packet-tea-mega-menu {
    width: 600px !important;
    min-width: 600px !important;
    left: auto !important;
    right: 0 !important;
}

@media (max-width: 768px) {
    .packet-tea-mega-menu {
        width: 100% !important;
        min-width: 100% !important;
        right: auto !important;
    }
}

/* ==========================================================================
   SOLID RED HEADER THEME
   ========================================================================== */
.premium-site-header.header-solid-red {
    position: relative !important;
    width: 100%;
    z-index: 1050;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.premium-site-header.header-solid-red .main-header {
    background-color: #ac170f !important;
    backdrop-filter: none;
    border-bottom: none;
    padding-top: 10px;
    padding-bottom: 10px;
}
.premium-site-header.header-solid-red .main-header .premium-nav ul li a {
    color: #ffffff !important;
    text-shadow: none;
}
.premium-site-header.header-solid-red .main-header .premium-nav ul li a:hover,
.premium-site-header.header-solid-red .main-header .premium-nav ul li a.active {
    color: #ffd05b !important;
}
.premium-site-header.header-solid-red .main-header .premium-nav ul li a::after {
    background-color: #ffd05b !important;
}
.premium-site-header.header-solid-red .main-header .header-icons .icon-btn,
.premium-site-header.header-solid-red
    .main-header
    .header-icons
    .cart-btn-premium {
    color: #ffffff !important;
    text-shadow: none;
}
.premium-site-header.header-solid-red
    .main-header
    .header-icons
    .icon-btn:hover,
.premium-site-header.header-solid-red
    .main-header
    .header-icons
    .cart-btn-premium:hover {
    color: #ffd05b !important;
}
.premium-site-header.header-solid-red
    .main-header
    .header-icons
    .cart-btn-premium
    .badge {
    border-color: #ac170f !important;
}
.premium-site-header.header-solid-red
    .main-header
    .premium-nav
    ul
    li.has-mega-menu
    .mega-menu
    ul.mega-menu-list
    li
    a {
    color: var(--primary-color) !important;
}
.premium-site-header.header-solid-red
    .main-header
    .premium-nav
    ul
    li.has-mega-menu
    .mega-menu
    ul.mega-menu-list
    li
    a:hover {
    color: #fff !important;
}

/* ==========================================================================
   ABOUT JOURNEY SECTION
   ========================================================================== */
.about-journey-section {
    padding: 80px 0;
    background-color: #fff9e9; /* Light cream background */
}

.about-journey-section .journey-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-journey-section .journey-wrapper .journey-content-side {
    flex: 1;
    padding-right: 20px;
}

.about-journey-section
    .journey-wrapper
    .journey-content-side
    .journey-timeline {
    position: relative;
    padding-left: 25px;
    margin-top: 50px;
}

.about-journey-section
    .journey-wrapper
    .journey-content-side
    .journey-timeline::before {
    content: "";
    position: absolute;
    left: 35px;
    top: 10px;
    bottom: 60px;
    width: 2px;
    background-image: linear-gradient(to bottom, #d69722 50%, transparent 50%);
    background-size: 2px 12px;
    background-repeat: repeat-y;
    z-index: 1;
}

.about-journey-section
    .journey-wrapper
    .journey-content-side
    .journey-timeline
    .timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 45px;
    z-index: 2;
}

.about-journey-section
    .journey-wrapper
    .journey-content-side
    .journey-timeline
    .timeline-item:last-child {
    margin-bottom: 0;
}

.about-journey-section
    .journey-wrapper
    .journey-content-side
    .journey-timeline
    .timeline-item
    .timeline-icon {
    width: 75px;
    height: 75px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e6a323;
    font-size: 26px;
    box-shadow: 0 4px 10px rgba(116, 17, 8, 0.3);
    margin-left: -27px;
    margin-right: 30px;
    flex-shrink: 0;
}

.about-journey-section
    .journey-wrapper
    .journey-content-side
    .journey-timeline
    .timeline-item
    .timeline-text
    h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}
.about-journey-section
    .journey-wrapper
    .journey-content-side
    .journey-timeline
    .timeline-item
    .timeline-icon
    img {
    height: auto;
    width: 40px;
}
.about-journey-section
    .journey-wrapper
    .journey-content-side
    .journey-timeline
    .timeline-item
    .timeline-text
    p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.about-journey-section .journey-wrapper .journey-image-side {
    flex: 1.2;
}

.about-journey-section .journey-wrapper .journey-image-side .image-container {
    position: relative;
    border-radius: 40px;
    padding: 5px;
}

.about-journey-section
    .journey-wrapper
    .journey-image-side
    .image-container
    .main-img {
    width: 100%;
    border-radius: 35px;
    object-fit: cover;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-journey-section
    .journey-wrapper
    .journey-image-side
    .image-container
    .floating-leaf-img {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 180px;
    z-index: 3;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.25));
}

@media (max-width: 991px) {
    .about-journey-section .journey-wrapper {
        flex-direction: column;
    }

    .about-journey-section .journey-wrapper .journey-content-side {
        padding-right: 0;
        margin-bottom: 0;
    }

    .about-journey-section
        .journey-wrapper
        .journey-image-side
        .image-container
        .floating-leaf-img {
        width: 120px;
        bottom: -20px;
        right: -20px;
    }
}

/* ================= ABOUT FEATURES STRIP ================= */
.about-features-strip {
    /* background: #8b1812; */
    /* background: linear-gradient(135deg, #a41b12 0%, #680e09 100%); */
    /* background: radial-gradient(
        ellipse at 50% 45%,
        #c51f13 0%,
        #b5160f 35%,
        #a20f0b 70%,
        #8f0807 100%
    ); */
    background: url("../images/banners/bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 0;
    position: relative;
    border-top: 5px solid #f8a920;
    border-bottom: 5px solid #f8a920;
}

.about-features-strip .feature-box {
    border-right: 1px solid rgba(223, 198, 153, 0.3);
    padding: 0 30px;
}

.about-features-strip .feature-box.border-0 {
    border-right: none !important;
}

.about-features-strip .icon-3d-wrapper {
    margin-bottom: 20px;
    display: inline-block;
}

.about-features-strip .icon-3d {
    width: 60px;
    height: 60px;
    display: inline-block;
    background: linear-gradient(180deg, #fff3a1 0%, #e6a323 50%, #b27300 100%);
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    /* Create a 3D drop shadow effect on the masked background */
    filter: drop-shadow(2px 3px 2px rgba(0, 0, 0, 0.4))
        drop-shadow(0px -1px 1px rgba(255, 255, 255, 0.3));
}

.about-features-strip .icon-leaves {
    -webkit-mask-image: url("https://api.iconify.design/ph/leaf-fill.svg");
    mask-image: url("https://api.iconify.design/ph/leaf-fill.svg");
}
.about-features-strip .icon-cup {
    -webkit-mask-image: url("https://api.iconify.design/ph/coffee-fill.svg");
    mask-image: url("https://api.iconify.design/ph/coffee-fill.svg");
}
.about-features-strip .icon-shield {
    -webkit-mask-image: url("https://api.iconify.design/ph/shield-check-fill.svg");
    mask-image: url("https://api.iconify.design/ph/shield-check-fill.svg");
}
.about-features-strip .icon-heart {
    -webkit-mask-image: url("https://api.iconify.design/ph/heart-bold.svg");
    mask-image: url("https://api.iconify.design/ph/heart-bold.svg");
}

.about-features-strip .feature-title {
    color: #fff9e9;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.about-features-strip .feature-desc {
    color: #ffdeb3;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 240px;
}

@media (max-width: 991px) {
    .about-features-strip .feature-box {
        border-right: none;
        padding: 40px 20px;
    }
    .about-features-strip .feature-box:last-child,
    .about-features-strip .feature-box.border-0 {
        border-bottom: none;
    }
}

.about-features-strip .stat-number-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 10px;
}

.about-features-strip .stat-number {
    font-family: var(--font-secondary);
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(180deg, #fff3a1 0%, #f8a920 50%, #f8a920 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    filter: drop-shadow(2px 3px 2px rgba(0, 0, 0, 0.4));
}

.about-features-strip .stat-suffix {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    color: #e6a323;
    margin-left: 5px;
    line-height: 1;
}

.about-features-strip .stat-label {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin: 0;
    opacity: 0.9;
}

/* ================= ABOUT CTA SECTION ================= */
.about-cta-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 100px 0;
    margin-top: 20px;
}

.about-cta-section .cta-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-cta-section .cta-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-cta-section .cta-overlay-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.about-cta-section .cta-overlay-content .cta-text-box h2 {
    font-family: var(--font-secondary);
    font-size: 2.8rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
}

.about-cta-section .cta-overlay-content .cta-text-box .cta-divider {
    width: 60px;
    height: 2px;
    background-color: #f8a920;
    margin-bottom: 25px;
}

.about-cta-section .cta-overlay-content .cta-text-box p {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 450px;
}

.about-cta-section .cta-overlay-content .cta-text-box .btn-explore {
    display: inline-flex;
    align-items: center;
    background-color: #f8a920;
    color: #161a15;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-cta-section .cta-overlay-content .cta-text-box .btn-explore:hover {
    background-color: #ffc14d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-cta-section
    .cta-overlay-content
    .cta-text-box
    .btn-explore
    .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    font-size: 1.2rem;
    border: 1px solid #161a15;
    border-radius: 50%;
    width: 24px;
    height: 24px;
}

@media (max-width: 991px) {
    .about-cta-section {
        padding: 60px 0;
    }
}

/* ================= BACK TO TOP BUTTON ================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #f8a920;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ================= STICKY HEADER ================= */
.premium-site-header {
    transition:
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        background-color 0.3s ease;
}

.premium-site-header.is-fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1070;
}

.premium-site-header.header-sticky {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
    background-color: #ac170f !important;
}

.premium-site-header.header-hidden {
    transform: translateY(-200px);
    box-shadow: none;
}

/* Ensure the sticky header always has solid red styling even if transparent initially */
.premium-site-header.header-sticky.header-transparent .main-header {
    background-color: #ac170f !important;
}

.site-footer .footer-bottom-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    column-gap: 18px;
    row-gap: 4px;
}

.site-footer .footer-bottom .made-by {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
}

.site-footer .footer-bottom .made-by .heart {
    color: var(--secondary-color);
}

.site-footer .footer-bottom .zestra-icon {
    width: 18px;
    height: 18px;
    color: currentColor;
}

.site-footer .footer-bottom .zestra-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: inherit;
    text-decoration: none;
}

.site-footer .footer-bottom .zestra-link:hover {
    color: var(--secondary-color);
}
