/** Shopify CDN: Minification failed

Line 145:0 Unexpected "}"

**/
/* --- Reset & Global Styles --- */
:root {
    --primary-color: rgba(46,93,56,1); /* Teal */
    --secondary-color: #222529; /* Dark background */
    --text-dark: #333333;
    --text-light: #777777;
    --text-lighter: #999999;
    --white: #ffffff;
    --sale-red: #e63946;
    --border-color: #e7e7e7;
    --container-width: 1500px;
    --font-family: 'Poppins', sans-serif; /* Assuming Poppins or similar */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family)!important;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #f4f4f4!important;
}

/* Using a generic font stack if Poppins isn't imported */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}


a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* --- Buttons & Badges --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}
.btn-primary:hover { background-color: var(--primary-color); }

.btn-dark {
    background-color: var(--secondary-color);
    color: var(--white);
}
.btn-dark:hover { opacity: 0.9; }

.btn-light {
    background-color: var(--white);
    color: var(--secondary-color);
}
.btn-light:hover { opacity: 0.9; }


.badge-new {
    background-color: var(--primary-color);
    color: white;
    font-size: 10px;
    padding: 2px 4px;
    border-radius: 2px;
    margin-left: 5px;
    vertical-align: text-top;
}

.badge-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--sale-red);
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
    border-radius: 50%;
}

/* --- Top Bar --- */
.top-bar {
    background-color: #f6f7f9;
    color: var(--text-light);
    font-size: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.top-bar .container {
    display: flex;
    justify-content: end;
}

.top-bar span, .top-bar a {
    margin-right: 15px;
    cursor: pointer;
}
.top-bar a:hover { color: var(--primary-color); }

/* --- Header --- */
.main-header {
    background: var(--white);
    padding: 20px 15px;
}
@media (min-width:1200px){
    .main-header {
    padding: 20px 0;
}
}
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h2 {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0;
    color: var(--secondary-color);
}
.logo a{
    padding:0;
}
.logo span {
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--text-light);
}

.header__inline-menu ul {
    display: flex;
}

.header__inline-menu li {
    margin: 0 15px;
}

.header__inline-menu a {
    font-weight: 600;
    font-size: 14px;
    padding:0;
    color: var(--secondary-color);
}
.header__inline-menu a:hover, .header__inline-menu a.active { color: var(--primary-color); }

.header-right {
    display: flex;
    align-items: center;
}

.search-bar {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    overflow: hidden;
    /* margin-right: 20px; */
}

.search-bar input {
    border: none;
    padding: 10px 15px;
    outline: none;
    font-size: 13px;
}

.search-bar select {
    border: none;
    border-left: 1px solid var(--border-color);
    padding: 10px;
    outline: none;
    font-size: 13px;
    color: var(--text-light);
    background: transparent;
}

.search-bar button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0 15px;
    cursor: pointer;
}

.wishlist-icon, .cart-icon {
    font-size: 20px;
    /* margin-left: 20px; */
    color: var(--secondary-color);
    position: relative;
}

.cart-count {
    position: absolute;
    top: 0px;
    right: -8px;
    left:inherit;
    bottom:inherit;
    background: var(--sale-red);
    color: white;
    font-size: 10px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.mobile-menu-toggle {
    display: none; /* Hidden on desktop */
    font-size: 24px;
    background: none;
    border: none;
    margin-left: 20px;
    cursor: pointer;
}

/* --- Info Banner --- */
.info-banner {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 0;
    font-size: 13px;
    font-weight: 600;
}

.info-banner .container {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.info-banner i { margin-right: 8px; }

/* --- Hero Section --- */
.hero-section {
    background-position: center;
    background-size: cover;
    padding: 50px 0;
    overflow: hidden;
    position: relative;
    color: #fff;
}
.hero-section:after {
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:linear-gradient(0deg, rgba(50, 47, 47, 0.75), rgba(31, 25, 25, 0.75));

}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index:1;
}

.hero-text {
    flex: 1;
    z-index: 2;
}

.hero-text h3 { font-size: 30px; color:white; font-weight: 300; margin-bottom: -10px;}
.hero-text h1 { font-size: 60px; color:white; font-weight: 900; line-height: 1.1; margin-bottom: 10px;}
.hero-text h2 { font-size: 40px; color:white; font-weight: 800; margin-bottom: 20px; }
.hero-text p { font-family: cursive;color:white; font-size: 24px;  margin-bottom: 30px;}

.hero-image {
    flex: 1.5;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-height: 500px;
    object-fit: contain;
    z-index: 1;
}

.price-badge {
    position: absolute;
    bottom: 10%;
    left: 50%;
    border-radius: 2rem;
    transform: translateX(-50%);
    background: rgb(83 130 82 / 90%);
    padding: 15px 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 2;
}

.price-badge span { display: block; }
.price-badge .price { font-size: 32px; font-weight: 900; color: var(--white); line-height: 1;}
.price-badge .cents { font-size: 18px; }
.price-badge .sub-text { font-size: 12px; color: var(--white); }

.golden-grid-text {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 18px;
    font-weight: 700;
    color: #e0e0e0;
    letter-spacing: 2px;
    z-index: 0;
}

/* --- Product Section & Grid --- */
.product-section {
    padding: 60px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.product-carousel-wrapper {
    position: relative;
    padding: 0 30px; /* Space for arrows */
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--text-lighter);
    cursor: pointer;
    z-index: 2;
}
.carousel-arrow.left { left: 0; }
.carousel-arrow.right { right: 0; }

/* .product-grid {
    display: flex;
    gap: 30px;
} */
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.info{
    text-align: left !important;
}

.product-card {
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
}
.product-card:hover {
    transform: translateY(-5px);
}

.product-image img {
    margin: 0 auto;
}

.product-details {
    padding: 20px 0;
}

.product-details .category {
    font-size: 11px;
    color: var(--text-lighter);
    text-transform: uppercase;
}

.product-details h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 5px 0;
}

.price {
    margin: 10px 0!important;
    font-weight: 700;
}
.old-price {
    text-decoration: line-through;
    color: var(--text-lighter);
    margin-right: 8px;
    font-size: 13px;
}
.new-price { color: var(--secondary-color); font-size: 16px;}

.btn-add-cart {
    background: #f4f4f4;
    color: var(--secondary-color);
    border: none;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}
.product-card:hover .btn-add-cart {
    background: var(--secondary-color);
    color: var(--white);
}

/* --- Categories Banner --- */
.categories-banner {
    padding: 40px 0;
    background: #f9f9f9;
}
.categories-banner .container {
    display: flex;
    justify-content: space-between;
}
.cat-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-light);
}
.cat-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
}

/* --- Mid-Page Promo --- */
.mid-promo {
    display: flex;
    height: 600px; /* Fixed height for desktop */
    overflow: hidden;
    position: relative;
}

.promo-left-image {
    flex: 1;
}
.promo-left-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-right-content {
    flex: 1;
    position: relative;
    background: var(--secondary-color);
    display: flex;
}

/* The dark skewed box */
.promo-dark-box {
    width: 70%; /* Adjust width as needed */
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    /* Creating the diagonal shape */
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.promo-dark-box h4 { font-size: 20px; font-weight: 300; color: var(--white); }
.promo-dark-box h2 { font-size: 50px; font-weight: 900; line-height: 1; color: var(--white); }
.promo-dark-box h3 { font-size: 50px; font-weight: 900; margin-bottom: 30px; color: var(--white); }

.promo-overlay-images {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%; /* Covers the right half */
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.promo-overlay-images img {
    position: absolute;
    object-fit: cover;
}

/* Positioning the overlay images roughly like the design */
.overlay-1 {
    top: 0;
    right: 0;
    width: 100%;
    height: 50%;
    /* Ensure it's behind the dark box where they overlap */
}
.overlay-2 {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 60%;
}


/* --- Bottom Banners --- */
.bottom-banners { padding: 40px 0; }
.banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.banner-item {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #eee;
}
.bg-green{
    background-color: var(--primary-color)
}
.banner-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.banner-text {
    position: relative;
    z-index: 2;
    padding: 40px;
}
.bg-green .banner-text h4, .bg-green .banner-text h3 { color: var(--white);}
.banner-text h4 { font-size: 24px; font-weight: 300; margin-bottom: 5px;}
.banner-text h3 { font-size: 40px; font-weight: 900; margin-bottom: 20px; line-height: 1; }
.white-text { color: var(--white); }

/* .left-banner .banner-text { margin-left: 5%;} */
.right-banner img { background-color: var(--primary-color); } /* Fallback color */

/* --- Instagram & Newsletter --- */
.instagram-banner {
    background: var(--secondary-color);
    color: var(--white);
    padding: 25px 0;
    text-align: center;
}
.instagram-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.instagram-banner i { font-size: 32px; margin-right: 20px; }
.instagram-banner h4 { font-size: 18px; margin-bottom: 5px; color:var(--white); }
.instagram-banner span { font-size: 14px; color: var(--text-light); }
.instagram-banner span:hover{ color:var(--primary-color)}

.newsletter-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 30px 0;
}
.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.newsletter-text { display: flex; align-items: center; flex: 1;}
.newsletter-text i { font-size: 36px; margin-right: 20px; }
.newsletter-text h4 { font-size: 20px; margin-bottom: 5px; color:var(--white); }
.newsletter-text span { font-size: 13px; }

.newsletter-form {
    flex: 1;
    display: flex;
    background: var(--white);
    padding: 5px;
    border-radius: 30px;
    margin: 0 30px;
}
.newsletter-form input {
    flex: 1;
    border: none;
    padding: 10px 20px;
    outline: none;
    border-radius:20px;
}
.newsletter-form button {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
}
.social-links a {
    color: var(--white);
    margin-left: 20px;
    font-size: 18px;
}

/* --- Footer --- */
.main-footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 60px;
}
.footer-logo h2 { color: var(--white); }
.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 25px;
}
.footer-col ul li { margin-bottom: 12px; font-size: 13px; }
.footer-col ul li a:hover { color: var(--white); }
.contact-info { margin-top: 30px; }
.contact-info span { display: block; font-size: 12px; }
.contact-info .phone { font-size: 24px; font-weight: 700; color: var(--white); }

.footer-bottom {
    background: #1d2023;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
}

.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 4px;
    z-index: 99;
}


/* =========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================= */

/* Tablet (approx 768px - 1024px) */
@media (max-width: 1024px) {
    .header__inline-menu { display: none; } /* Hide Menu */
    .mobile-menu-toggle { display: block; } /* Show Hamburger */
    .search-bar { display: none; } /* Hide Search bar to save space */
    
    .hero-text h1 { font-size: 48px; }
    .hero-text h2 { font-size: 32px; }
    .hero-image img { max-height: 400px; }

    .grid-5 { grid-template-columns: repeat(3, 1fr); } /* 3 items per row */

    .categories-banner .container { flex-wrap: wrap; justify-content: center; gap: 20px;}

    .mid-promo { height: auto; flex-direction: column; }
    .promo-left-image, .promo-right-content { flex: auto; width: 100%; }
    .promo-left-image { height: 400px; }
    .promo-right-content { height: 400px; }
    .promo-dark-box { width: 60%; clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%); }

    .banner-grid { grid-template-columns: 1fr; } /* Stack bottom banners */
    
    .newsletter-content { flex-direction: column; text-align: center; gap: 20px; }
    .newsletter-text { flex-direction: column; }
    .newsletter-text i { margin-right: 0; margin-bottom: 10px; }
    .newsletter-form { width: 100%; margin: 0; }

    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile (approx < 768px) */
@media (max-width: 767px) {
    .top-bar, .info-banner { display: none; } /* Hide top bars on small mobile */

    .hero-content { flex-direction: column; text-align: center; }
    .hero-text { margin-bottom: 30px; }
    .hero-image img { max-height: 300px; }
    .golden-grid-text { display: none; }
    .price-badge { bottom: 0; }

    .grid-5 { grid-template-columns: repeat(1, 1fr); } /* 1 item per row */
    .product-carousel-wrapper { padding: 0; }
    .carousel-arrow { display: none; } /* Hide arrows on mobile, assume swipe */

    .cat-item { flex-direction: column; text-align: center; width: 45%; margin-bottom: 20px;}
    .cat-item i { margin-right: 0; margin-bottom: 10px; }

    .promo-right-content { height: auto; flex-direction: column; }
    .promo-dark-box { width: 100%; clip-path: none; padding: 40px 20px; text-align: center; }
    .promo-overlay-images { position: relative; width: 100%; height: 300px; }
    .promo-overlay-images img { width: 50%; position: relative; float: left;}

    .banner-text h3 { font-size: 32px; }
    /* .banner-item { height: 200px; } */

    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    
}