@charset "utf-8";
/* ZenBakeryShop - Main Stylesheet */

/*----------------
CSS VARIABLES
-----------------*/
:root {
    /* Warm Golden/Honey Color Scheme */
    --primary: #C8943D;
    --primary-dark: #A67929;
    --primary-light: #DEAB52;
    --secondary: #8B5E3C;
    --accent: #F5E6C8;
    --cream: #FDF8F0;
    --brown-light: #FAF6F0;
    --text-dark: #3D2E1F;
    --text-body: #5A4636;
    --text-light: #8A7A68;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray: #888888;
    --gray-light: #F8F6F3;
    --border: #E8DFD4;
    --shadow: rgba(200, 148, 61, 0.12);
    --shadow-dark: rgba(0, 0, 0, 0.15);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s ease;
    --radius: 8px;
    --radius-lg: 16px;
}

/*----------------
RESET CSS
-----------------*/
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/*----------------
TOP BAR
-----------------*/
.top-bar {
    background: var(--primary);
    padding: 10px 0;
}

.top-bar-content {
    text-align: center;
}

.top-bar-text {
    color: var(--white);
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 400;
}

/*----------------
HEADER
-----------------*/
.site-header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px var(--shadow);
    transition: var(--transition);
}

.site-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px var(--shadow-dark);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    max-width: 140px;
    /* height: 50px; */
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.cart-link svg {
    color: var(--primary);
}

.cart-link:hover {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/*----------------
MOBILE NAVIGATION
-----------------*/
.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: var(--transition);
    overflow-y: auto;
    box-shadow: -5px 0 30px var(--shadow-dark);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-logo img {
    width: 40px;
    height: 40px;
}

.mobile-logo span {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}

.mobile-close {
    padding: 5px;
    color: var(--text-dark);
}

.mobile-menu {
    padding: 20px;
}

.mobile-menu li {
    border-bottom: 1px solid var(--border);
}

.mobile-menu a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

.mobile-menu a:hover {
    color: var(--primary);
}

.mobile-nav-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-footer a {
    font-size: 14px;
    color: var(--text-light);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

/*----------------
BUTTONS
-----------------*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-small {
    padding: 10px 20px;
    font-size: 12px;
}

.shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.shop-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/*----------------
HERO SECTION
-----------------*/
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--cream) 0%, var(--brown-light) 100%);
    padding: 80px 0;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--primary);
    display: block;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-body);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .btn-outline {
    color: var(--primary);
    border-color: var(--primary);
}

.hero-buttons .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.hero-image {
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px var(--shadow-dark);
}

.hero-img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-badge-float {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px var(--shadow-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-icon {
    font-size: 24px;
    color: var(--secondary);
}

.badge-text {
    font-weight: 600;
    color: var(--text-dark);
}

/*----------------
FEATURES STRIP
-----------------*/
.features-strip {
    background: var(--white);
    padding: 50px 0;
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 14px;
    color: var(--text-light);
}

/*----------------
SECTION HEADERS
-----------------*/
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

/*----------------
ABOUT SECTION
-----------------*/
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px var(--shadow);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: 0 15px 40px var(--shadow);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
    color: var(--text-body);
}

.about-list {
    margin: 30px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-body);
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--cream);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

/*----------------
PRODUCTS SECTION
-----------------*/
.products-section,
.featured-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.featured-section {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.products-grid-6 {
    grid-template-columns: repeat(3, 1fr);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 69, 19, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay span {
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: var(--font-display);
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

/*----------------
MARQUEE SECTION
-----------------*/
.marquee-section {
    background: var(--primary);
    padding: 20px 0;
    overflow: hidden;
}

.scrollStrip {
    overflow: hidden;
}

.item-wrap {
    display: flex;
    animation: marquee 30s linear infinite;
}

.items {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 40px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.marquee-star {
    color: var(--accent);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/*----------------
CATEGORIES SECTION
-----------------*/
.categories-section {
    padding: 80px 0;
    background: var(--cream);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-dark);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.category-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.category-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.category-link {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.category-link:hover {
    color: var(--primary-dark);
}

/*----------------
FAQ SECTION
-----------------*/
.faq-section {
    padding: 80px 0;
    background: var(--brown-light);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.faq-header p {
    color: var(--text-light);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 3px 15px var(--shadow);
}

.accordion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
    transition: var(--transition);
}

.accordion:hover {
    background: var(--cream);
}

.accordion.active {
    background: var(--primary);
}

.accordion.active .faq-question,
.accordion.active .faq-icon {
    color: var(--white);
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary);
    transition: var(--transition);
}

.accordion.active .faq-icon {
    transform: rotate(45deg);
}

.accordion-content {
    display: none;
    padding: 0 25px 25px;
}

.accordion-content p {
    color: var(--text-body);
    line-height: 1.7;
}

/*----------------
NEWSLETTER
-----------------*/
.newsletter {
    background: var(--primary);
    padding: 60px 0;
}

.newsletter-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.newsletter-content h3 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 10px;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border-radius: var(--radius);
    font-size: 15px;
    border: 2px solid transparent;
    background: var(--white);
}

.newsletter-form input:focus {
    border-color: var(--secondary);
}

.newsletter-form button {
    padding: 15px 30px;
    background: var(--secondary);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--white);
    color: var(--primary);
}

/*----------------
FOOTER
-----------------*/
.site-footer {
    background: var(--text-dark);
    padding: 80px 0 0;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    width: 45px;
    height: 45px;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-list svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-list span,
.contact-list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-disclaimer {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

.footer-disclaimer p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    text-align: center;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.payment-cards img {
    height: 30px;
    opacity: 0.7;
}

/*----------------
PRODUCTS PAGE
-----------------*/
.page-banner {
    background: linear-gradient(135deg, var(--cream) 0%, var(--brown-light) 100%);
    padding: 60px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-banner p {
    color: var(--text-light);
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--text-light);
}

.all-products {
    padding: 80px 0;
}

.s3-prdcts-list,
.s3-prdcts-list2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.s3-prdcts-list li,
.s3-prdcts-list2 li {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.s3-prdcts-list li:hover,
.s3-prdcts-list2 li:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.prod-img-box {
    height: 250px;
    overflow: hidden;
}

.prod-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.s3-prdcts-list li:hover .prod-img-box img,
.s3-prdcts-list2 li:hover .prod-img-box img {
    transform: scale(1.1);
}

.prod-box {
    padding: 25px;
    text-align: center;
}

.prod-box span {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.shop-prc {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

/*----------------
SHOP PAGE
-----------------*/
.shop-section {
    padding: 60px 0;
}

.shop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.shop-images {
    position: sticky;
    top: 120px;
}

.main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.shop-details h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.shop-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.shop-description {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.quantity-selector label {
    font-weight: 600;
    color: var(--text-dark);
}

.qty-controls {
    display: flex;
    align-items: center;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.qty-controls button {
    width: 45px;
    height: 45px;
    background: var(--gray-light);
    font-size: 20px;
    color: var(--text-dark);
    transition: var(--transition);
}

.qty-controls button:hover {
    background: var(--primary);
    color: var(--white);
}

.qty-controls input {
    width: 60px;
    height: 45px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-left: 2px solid var(--border);
    border-right: 2px solid var(--border);
}

/*----------------
CART PAGE
-----------------*/
.cart-section {
    padding: 60px 0;
}

.cart-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.cart-items {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 5px 20px var(--shadow);
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-img {
    width: 100px;
    height: 100px;
    border-radius: var(--radius);
    overflow: hidden;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 600;
}

.cart-summary {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: sticky;
    top: 120px;
}

.cart-summary h3 {
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 15px;
}

.summary-row.total {
    border-top: 2px solid var(--primary);
    margin-top: 15px;
    padding-top: 15px;
    font-size: 20px;
    font-weight: 700;
}

.summary-row.total span:last-child {
    color: var(--primary);
}

/*----------------
CART FORM STYLES
-----------------*/
.summry-lft {
    float: left;
    width: 100%;
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 20px;
}

.cart-box1, .cart-box2, .card-box3, .card-box4 {
    float: left;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-box4 {
    border-bottom: none;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.cvv-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.what.sccode {
    color: var(--primary);
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
}

.cvv-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px var(--shadow-dark);
}

/*----------------
CONTACT PAGE
-----------------*/
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info {
    background: var(--cream);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-body);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
    color: var(--text-body);
    font-size: 14px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px var(--shadow);
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/*----------------
POLICY PAGES
-----------------*/
.policy-section {
    padding: 80px 0;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.policy-content ul {
    margin: 20px 0 20px 30px;
}

.policy-content ul li {
    list-style: disc;
    margin-bottom: 10px;
    line-height: 1.7;
}

/*----------------
CANCELLATION PAGE
-----------------*/
.cancellation-hero {
    background: linear-gradient(135deg, var(--cream) 0%, var(--brown-light) 100%);
    padding: 80px 0;
    text-align: center;
}

.cancellation-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cancellation-hero p {
    font-size: 18px;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto;
}

.cancellation-content {
    padding: 80px 0;
}

.cancellation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.cancel-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
}

.cancel-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
}

.cancel-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.cancel-card p {
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.7;
}

/*----------------
INGREDIENTS PAGE
-----------------*/
.ingredients-section {
    padding: 80px 0;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.ingredient-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 20px var(--shadow);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.ingredient-icon {
    width: 60px;
    height: 60px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ingredient-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.ingredient-content p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
}

/*----------------
INGREDIENTS MODAL
-----------------*/
.ingredients-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.ingredients-modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary);
    color: var(--white);
}

/*----------------
SUBSCRIPTION TERMS
-----------------*/
.subscription-terms {
    background: var(--cream);
    padding: 20px;
    border-radius: var(--radius);
    margin: 20px 0;
}

.subscription-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.subscription-toggle h4 {
    font-size: 16px;
    color: var(--primary);
}

.toggle-icon {
    font-size: 20px;
    transition: var(--transition);
}

.subscription-toggle.active .toggle-icon {
    transform: rotate(180deg);
}

.subscription-content {
    display: none;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--border);
}

.subscription-content.active {
    display: block;
}

.subscription-content p {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 10px;
}

/*----------------
FORM VALIDATION
-----------------*/
.frmElmnts {
    margin-bottom: 20px;
}

.frmElmnts label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.frmElmnts input,
.frmElmnts select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
}

.frmElmnts input:focus,
.frmElmnts select:focus {
    border-color: var(--primary);
    outline: none;
}

.frmElmnts input.error {
    border-color: #e74c3c;
}

.frmElmnts .error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
}

.frmfld1 {
    float: left;
    width: 48%;
    margin-right: 4%;
}

.frmfld1:nth-child(2n) {
    margin-right: 0;
}

.frmfld1-short1 {
    width: 30%;
}

/*----------------
SHOP PAGE DETAILS
-----------------*/
.prdcts-details-s1 {
    padding: 60px 0;
    background: var(--white);
}

.prdcts-mid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.prodSlider-Left {
    position: sticky;
    top: 120px;
    grid-column: 1;
    grid-row: 1;
}

.prodSlider-Left img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px var(--shadow);
    object-fit: contain;
}

.prodDetls-Rght {
    text-align: left;
    grid-column: 2;
    grid-row: 1;
}

.prodBreadcrm {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.prodBreadcrm a {
    color: var(--primary);
}

.prod-nameHdng {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.prd-prc-txt {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.prd-p1 {
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
}

.shop-list-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--cream);
    border-radius: var(--radius);
}

.shop-list-menu li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-body);
}

.shop-list-menu li img {
    width: 20px;
    height: 20px;
}

.ultxt {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    margin-top: 25px;
}

.slct-size {
    color: var(--text-body);
    line-height: 1.7;
    font-size: 14px;
}

.slct-size ul {
    padding-left: 20px;
    margin: 10px 0;
}

.slct-size ul li {
    list-style: disc;
    margin-bottom: 8px;
}

.benft-txt {
    padding-left: 20px;
}

.benft-txt li {
    list-style: disc;
    margin-bottom: 10px;
    color: var(--text-body);
    line-height: 1.6;
}

.oil-s1-rgt-box-hd2 {
    margin-top: 20px;
}

.prd_quantity {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.prd_quantity p {
    font-weight: 600;
    color: var(--text-dark);
}

.wan-spinner2 {
    display: flex;
    align-items: center;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.wan-spinner2 input.qtybox {
    width: 50px;
    height: 45px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    border: none;
    background: var(--white);
}

.wan-spinner2 a {
    width: 40px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-light);
    font-size: 20px;
    color: var(--text-dark);
    transition: var(--transition);
}

.wan-spinner2 a:hover {
    background: var(--primary);
    color: var(--white);
}

.add-to-btn {
    margin-left: 15px;
}

.secure-logo {
    margin-top: 25px;
    max-width: 250px;
}

.purchase-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.purchase-container .tog {
    display: block;
    padding: 15px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.purchase-container .tog.active {
    border-color: var(--primary);
    background: var(--cream);
}

.purchase-container .tog div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.purchase-container input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.comm_txt1 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
}

.comm_txt1 span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/*----------------
CART PAGE
-----------------*/
.cart-frm {
    padding: 60px 0;
    background: var(--gray-light);
}

.bdinpad {
    max-width: 1000px;
    margin: 0 auto;
}

/* Cart Summary Section */
.cart-summary-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 30px var(--shadow);
    margin-bottom: 30px;
}

.cart-summary-header {
    padding: 25px 30px;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
}

.cart-summary-header h2 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--text-dark);
    margin: 0;
}

.cart-items-container {
    padding: 20px;
}

.empty-cart-message {
    text-align: center;
    padding: 40px 20px;
}

.nt-txt {
    display: block;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 20px;
}

.continue-shpbtn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
}

.continue-shpbtn:hover {
    background: var(--primary-dark);
}

/* Checkout Form Section */
.checkout-form-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 30px var(--shadow);
}

/* Legacy classes for compatibility */
.crt-from-sec {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 30px var(--shadow);
}

.cart-sec1 {
    padding: 30px;
    border-bottom: 1px solid var(--border);
}

.nt-slt {
    text-align: center;
    padding: 20px;
}

/* Cart Summary Box */
.summry-lft {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 25px;
}

.cart-box1, .cart-box2, .card-box3, .card-box4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

.card-box4 {
    border-bottom: none;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    padding-top: 15px;
    margin-top: 5px;
}

/* Cart Item Display */
.cartItemRow {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.cartItemRow:last-child {
    border-bottom: none;
}

.cartItemRow img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius);
}

.cartItemDetails {
    flex: 1;
}

.cartItemDetails h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.cartItemDetails .price {
    color: var(--primary);
    font-weight: 600;
}

/* Dynamic Cart Display */
.cart-lft {
    width: 100%;
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 20px;
    overflow: hidden;
}

.cart-box1 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 15px;
    padding: 15px 20px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: none;
}

.cart-box1 .one,
.cart-box1 .two,
.cart-box1 .three,
.cart-box1 .four {
    text-align: center;
}

.cart-box1 .one {
    text-align: left;
}

.cart-box2 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.cart-box2:last-of-type {
    border-bottom: none;
}

.cart-box2 .one {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-box2 .two,
.cart-box2 .three,
.cart-box2 .four {
    text-align: center;
}

.cart-box2 .four {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cart-prdname {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    color: var(--text-dark);
}

.cart-prdname .span2 {
    font-weight: 600;
}

.cart-prdname .span2 span {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 3px;
}

.cart-prd1 {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius);
}

.unit-price,
.sub-total {
    font-weight: 600;
    color: var(--text-dark);
}

.sub-total {
    color: var(--primary);
}

.cart-remv {
    width: 20px;
    height: 20px;
    opacity: 0.6;
    transition: var(--transition);
}

.cart-remv:hover {
    opacity: 1;
}

.card-box3 {
    padding: 20px;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid var(--border);
}

.card-box3rgt {
    margin-left: auto;
}

.cart-prclist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: right;
}

.cart-prclist li {
    font-size: 15px;
    color: var(--text-body);
}

.cart-prclist li .span1 {
    font-weight: 600;
    color: var(--text-dark);
    margin-left: 10px;
}

.cart-prclist li .span2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.card-box4 {
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    border-bottom: none;
}

.card-box4-lft {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.card-box4 .continue-shpbtn {
    padding: 10px 20px;
    font-size: 13px;
}

#browse {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
}

#browse:hover {
    background: var(--primary-dark);
}

.div-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.crt-frm1, .crt-frm2 {
    padding: 30px;
}

.crt-frm1 {
    border-right: 1px solid var(--border);
}

.safebox {
    margin-bottom: 25px;
}

.safebox p {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
}

.frm1, .frm2 {
    width: 100%;
}

.frmfld {
    margin-bottom: 20px;
}

.frmfld label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.frmfld input,
.frmfld select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
}

.frmfld input:focus,
.frmfld select:focus {
    border-color: var(--primary);
    outline: none;
}

.frmfld1 {
    display: inline-block;
    width: 48%;
    margin-right: 4%;
    margin-bottom: 20px;
    vertical-align: top;
}

.frmfld1:nth-child(2n) {
    margin-right: 0;
}

.frmfld1 input,
.frmfld1 select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
}

.frmfld1 input:focus,
.frmfld1 select:focus {
    border-color: var(--primary);
    outline: none;
}

.frmfld1-short1 {
    width: 45%;
}

.frmfld1-short2 {
    width: 45%;
    margin-right: 0;
}

.frmfld-short1 {
    width: 48%;
    display: inline-block;
    margin-right: 4%;
}

.frmfld-short2 {
    width: 48%;
    display: inline-block;
    margin-right: 0;
}

.sameas {
    font-size: 14px;
    color: var(--text-body);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sameas .chkbx {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.weaccept {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--cream);
    border-radius: var(--radius);
}

.weaccept .span1 {
    font-weight: 600;
    color: var(--text-dark);
}

.weaccept .cards {
    height: 30px;
}

.topmar2 {
    margin-top: 20px;
    padding: 20px;
    background: var(--cream);
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.cvv-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.what.sccode {
    color: var(--primary);
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
    white-space: nowrap;
}

.what.sccode:hover {
    color: var(--primary-dark);
}

.trm {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 20px;
}

.trm a {
    color: var(--primary);
    text-decoration: underline;
}

.trm .chk {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    margin-right: 10px;
    vertical-align: middle;
}

.trm-padd {
    padding: 15px;
    background: var(--cream);
    border-radius: var(--radius);
}

/* Product Terms in Cart */
.trm_1 {
    display: block;
    margin-top: 15px;
}

.trm_1 span {
    display: block;
    padding: 12px 15px;
    margin-bottom: 10px;
    background: var(--white);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-body);
}

.trm_1 span:last-child {
    margin-bottom: 0;
}

.submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: var(--primary);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    margin-top: 20px;
}

.submit-btn:hover {
    background: var(--primary-dark);
}

.secure {
    display: block;
    margin: 20px auto 0;
    max-width: 200px;
}

.formError {
    border-color: #e74c3c !important;
}

.formError + label,
.formError ~ .error-msg {
    color: #e74c3c;
}

.dsplay {
    display: block;
    width: 100%;
}

/* View Ingredients Button */
.view-ingredients-btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--secondary);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
    transition: var(--transition);
    cursor: pointer;
}

.view-ingredients-btn:hover {
    background: var(--primary);
}

/* Ingredients Modal - Larger View */
.ingredients-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ingredients-modal-overlay.active {
    display: flex;
}

.ingredients-modal-content {
    background: var(--white);
    max-width: 900px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--radius-lg);
    position: relative;
    padding: 20px;
}

.ingredients-modal-content img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.ingredients-modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--shadow-dark);
    z-index: 10;
    transition: var(--transition);
}

.ingredients-modal-close:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* Payment Card Section */
.payment-card-section {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
}

.payment-card-section .weaccept {
    margin-bottom: 15px;
    padding: 0;
    background: none;
}

.payment-card-section .frmfld input,
.payment-card-section .frmfld select {
    background: var(--white);
}

/* Card Expiration Row */
.card-exp-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.card-exp-row .frmfld-exp {
    flex: 1;
    min-width: 120px;
}

.card-exp-row .frmfld-cvv {
    flex: 0 0 120px;
}

.card-exp-row .frmfld-cvv label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-exp-row .frmfld-cvv label .what {
    font-size: 11px;
    font-weight: 400;
}

/* Terms Page Product Terms Styling */
.trm-bx h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

.trm-bx h3:first-of-type {
    margin-top: 0;
}

/* Product Terms Cards */
.trm-bx h3 + p {
    background: var(--gray-light);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 25px;
    border-left: 4px solid var(--primary);
}

.tems_bg {
    padding: 60px 0;
    background: var(--white);
}

.page-content.tems_bg .trm-bx {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 30px var(--shadow);
}

#pop_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#pop_content {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    position: relative;
    max-width: 400px;
}

#pop_content .cross {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

#pop_content .cross:hover {
    opacity: 1;
}

/*----------------
THANK YOU PAGE
-----------------*/
.thank-you {
    padding: 80px 0;
    text-align: center;
    background: var(--cream);
    min-height: 400px;
}

.thank-you .comm_txt1 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.thank-you .comm_txt1 span {
    font-size: 24px;
    color: var(--text-dark);
    display: block;
    margin-top: 10px;
}

.thnx-txt2 {
    font-size: 18px;
    color: var(--text-body);
    margin-bottom: 15px;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-icon svg {
    color: var(--primary);
}

/*----------------
FAQ ACCORDION (Shop Page)
-----------------*/
.sectionTwo {
    padding: 80px 0;
    background: var(--brown-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto 40px;
}

.up-slide-dwn {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px var(--shadow);
}

.acdn-heading {
    padding: 20px 50px 20px 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.acdn-heading:hover {
    background: var(--cream);
}

.acdn-heading::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    transition: var(--transition);
}

.acdn-heading.accordion-open {
    background: var(--primary);
    color: var(--white);
}

.acdn-heading.accordion-open::after {
    content: '-';
}

.acdn-content {
    padding: 0 25px 25px;
    display: none;
}

.acdn-content:first-of-type,
.up-slide-dwn:first-child .acdn-content {
    display: block;
}

.acdn-para {
    color: var(--text-body);
    line-height: 1.7;
}

/*----------------
UTILITIES
-----------------*/
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

.mt-0 { margin-top: 0; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.show-mob { display: none; }
.hide-mob { display: block; }

.clearall {
    clear: both;
    float: none;
}

/*----------------
RESPONSIVE STYLES
-----------------*/
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-content p {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-badge-float {
        left: 50%;
        transform: translateX(-50%);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-img-secondary {
        right: 20px;
        bottom: -20px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .shop-grid {
        grid-template-columns: 1fr;
    }

    .cart-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cancellation-grid {
        grid-template-columns: 1fr;
    }

    .ingredients-grid {
        grid-template-columns: 1fr;
    }

    .s3-prdcts-list,
    .s3-prdcts-list2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .prdcts-mid {
        grid-template-columns: 1fr;
    }

    .prodSlider-Left {
        position: relative;
        top: 0;
        grid-column: 1;
        grid-row: 1;
    }

    .prodDetls-Rght {
        grid-column: 1;
        grid-row: 2;
    }

    .div-box {
        grid-template-columns: 1fr;
    }

    .crt-frm1 {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-img-wrapper img {
        height: 350px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .about-section,
    .products-section,
    .featured-section,
    .categories-section,
    .faq-section {
        padding: 60px 0;
    }

    .about-content h2 {
        font-size: 30px;
    }

    .newsletter-box {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-content {
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        max-width: none;
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .contact-list li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .page-banner h1 {
        font-size: 36px;
    }

    .frmfld1 {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .show-mob { display: block; }
    .hide-mob { display: none; }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .products-grid,
    .products-grid-6 {
        grid-template-columns: 1fr;
    }

    .s3-prdcts-list,
    .s3-prdcts-list2 {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .faq-header h2 {
        font-size: 28px;
    }

    .cancellation-hero h1 {
        font-size: 32px;
    }
}

/*----------------
PRINT STYLES
-----------------*/
@media print {
    .top-bar,
    .site-header,
    .newsletter,
    .site-footer,
    .mobile-nav,
    .mobile-overlay {
        display: none;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
}
