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

:root {
    --primary-red: #D32F2F;
    --primary-red-dark: #B71C1C;
    --yellow: #f8d820;
    --white:#ffffff;    
    --green: #388E3C;
    --green-dark: #2E7D32;
    --dark: #333333;
    --light-gray: #f8f9fa;
    --medium-gray: #e0e0e0;
    --gold: #FFB300;
    --shadow: 0 2px 12px rgba(0,0,0,.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
    --radius: 12px;
    --radius-sm: 8px
}

body {
    font-family: Open Sans,sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden
}

h1,h2,h3,h4,h5,h6 {
    font-family: Poppins,sans-serif;
    font-weight: 700
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .3s ease
}

ul {
    list-style: none
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: Poppins,sans-serif;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
    text-decoration: none
}

.btn-yellow {
    background: var(--yellow);
    color: var(--dark);
}

.btn-red:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px #d32f2f4d;
    color:(--white);
}

.btn-green {
    background: var(--green);
    color: var(--white)
}

.btn-green:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px #388e3c4d
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--medium-gray)
}

.btn-outline:hover {
    border-color: var(--primary-red);
    color: var(--primary-red)
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    justify-content: center
}

.top-bar {
    background: var(--primary-red);
    color: var(--white);
    padding: 0 0;
    font-size: 13px
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.top-bar a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px
}

.top-bar a:hover {
    opacity: .85
}

.top-bar-center p {
    font-size: 12px;
    opacity: .9
}

.navbar {
    background: var(--white);
    padding: 2px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.nav-left {
    flex: 1
}

.nav-menu {
    display: flex;
    gap: 28px
}

.nav-menu a {
    font-family: Poppins,sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--dark);
    position: relative;
    padding: 4px 0
}

.nav-menu a:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width .3s ease
}

.nav-menu a:hover:after,.nav-menu a.active:after {
    width: 100%
}

.nav-menu a.active {
    color: var(--primary-red)
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--dark)
}

.nav-center {
    flex: 0 0 auto;
    padding: 0 30px
}

.logo img {
    height: 75px;
    width: auto
}

.nav-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px
}

.nav-icon {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--dark);
    position: relative;
    padding: 8px;
    border-radius: 50%;
    transition: all .3s ease
}

.nav-icon:hover {
    background: var(--light-gray);
    color: var(--primary-red)
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-red);
    color: var(--white);
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700
}

.user-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666
}

.mobile-menu {
    display: none;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 15px 20px
}

.mobile-menu.active {
    display: block
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.mobile-menu a {
    font-family: Poppins,sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    display: block;
    border-bottom: 1px solid var(--light-gray)
}

.search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000b3;
    z-index: 2000;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px
}

.search-overlay.active {
    display: flex
}

.search-container {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    width: 90%;
    max-width: 600px;
    display: flex;
    gap: 10px
}

.search-container input {
    flex: 1;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 16px;
    outline: none;
    font-family: Open Sans,sans-serif
}

.search-container input:focus {
    border-color: var(--primary-red)
}

.search-close {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px
}

.hero {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,#000000b3,#0000004d)
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0px 40px;
    color: var(--white)
}

.hero-badge {
    display: inline-block;
    background:var(--white);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50px;
    padding: 3px 20px;
    font-size: 14px;
    margin-bottom: 20px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    color: #f38300;
    border-color: 
    color-mix(in oklab, #f38300 30%, transparent);
    background-color: 
    color-mix(in oklab, #f38300 20%, transparent);
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 800;
    font-family: 'Raleway';
    font-weight: normal;
}

.hero-content h4 {
    font-size: 16px;
    font-weight: 400;
    opacity: .9;
    margin-bottom: 30px;
    line-height: 1.6
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap
}

.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap
}

.hero-stats .stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: .9
}

.hero-stats .stat i {
    color: var(--gold)
}

.categories-section {
    /* padding: 70px 0; */
    background: var(--light-gray)
}

.section-header {
    text-align: center;
    /* padding: 40px 0; */
}

.section-header h2 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 8px
}

.section-header p {
    color: #666;
    font-size: 16px
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(140px,1fr));
    gap: 16px;
    margin-bottom: 40px
}

.category-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease;
    border: 2px solid transparent
}

.category-card:hover,.category-card.active {
    border-color: var(--primary-red);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg)
}

.category-card.active {
    background: #fff5f5
}

.cat-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 10px
}

.category-card h3 {
    font-size: 14px;
    margin-bottom: 4px
}

.category-card p {
    font-size: 12px;
    color: #888
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
    gap: 24px
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all .3s ease
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg)
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f5f5f5
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease
}

.product-card:hover .product-image img {
    transform: scale(1.05)
}

.product-info {
    padding: 16px
}

.product-info h3 {
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 600
}

.product-weight {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px
}

.product-rating i {
    color: var(--gold);
    font-size: 12px
}

.product-rating span {
    font-size: 12px;
    color: #666
}

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

.ashro-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--green);
    font-family: Poppins,sans-serif
}

.strike-price {
    font-size: 14px;
    color: var(--primary-red);
    text-decoration: line-through
}

.product-card .btn {
    width: 100%;
    justify-content: center;
    padding: 10px 20px;
    font-size: 13px;
    border-radius: var(--radius-sm)
}

.combo-section {
    /* padding: 70px 0; */
}

.combo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 24px
}

.combo-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: all .3s ease
}

.combo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg)
}

.combo-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-red);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600
}

.combo-images {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px
}

.combo-images img {
    height: 250px;
    width: auto
}

.combo-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    font-family: 'Raleway';
}

.combo-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px
}

.combo-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px
}

.membership-section {
    padding: 70px 0;
    background: linear-gradient(135deg,#fff8e1,#fff3e0)
}

.membership-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    text-align: center
}

.membership-content h2 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 8px
}

.membership-content h3 {
    font-size: 20px;
    color: var(--primary-red);
    margin-bottom: 16px;
    font-weight: 600
}

.membership-content>p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #666
}

.membership-tiers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px
}

.tier {
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    transition: all .3s ease
}

.tier:hover {
    background: #fff5f5;
    transform: scale(1.05)
}

.tier-name {
    font-family: Poppins,sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--dark)
}

.tier-discount {
    font-family: Poppins,sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--green)
}

.wholesale-section {
    padding: 70px 0
}

.wholesale-card {
    background: linear-gradient(135deg,#e8f5e9,#c8e6c9);
    border-radius: var(--radius);
    padding: 50px;
    text-align: center
}

.wholesale-icon {
    font-size: 48px;
    color: var(--green);
    margin-bottom: 16px
}

.wholesale-card h2 {
    font-size: 28px;
    margin-bottom: 12px
}

.wholesale-card p {
    color: #555;
    margin-bottom: 24px;
    font-size: 16px
}

.newsletter-section {
    padding: 70px 0;
    background: var(--light-gray)
}

.newsletter-card {
    text-align: center;
    max-width: 600px;
    margin: 0 auto
}

.newsletter-card h2 {
    font-size: 28px;
    margin-bottom: 12px
}

.newsletter-card p {
    color: #666;
    margin-bottom: 24px
}

.newsletter-form {
    display: flex;
    gap: 10px
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--medium-gray);
    border-radius: 50px;
    font-size: 15px;
    outline: none;
    font-family: Open Sans,sans-serif
}

.newsletter-form input:focus {
    border-color: var(--primary-red)
}

.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333
}

.footer-logo {
    height: 50px;
    margin-bottom: 16px
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px
}

.footer-contact p {
    font-size: 13px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px
}

.footer-col h3 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 16px
}

.footer-col ul li {
    margin-bottom: 10px
}

.footer-col ul a {
    font-size: 14px;
    color: #aaa
}

.footer-col ul a:hover {
    color: var(--primary-red)
}

.social-links {
    display: flex;
    gap: 12px
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 16px;
    transition: all .3s ease
}

.social-links a:hover {
    background: var(--primary-red);
    color: var(--white)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 13px
}

.footer-bottom-right {
    color: #888
}

.cart-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    z-index: 3000
}

.cart-overlay.active {
    display: block
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100%;
    background: var(--white);
    z-index: 3001;
    display: flex;
    flex-direction: column;
    transition: right .3s ease;
    box-shadow: -5px 0 20px #0000001a
}

.cart-drawer.active {
    right: 0
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--medium-gray)
}

.cart-header h3 {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px
}

.cart-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999
}

.cart-empty i {
    font-size: 48px;
    margin-bottom: 12px;
    display: block
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray)
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0
}

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

.cart-item-details {
    flex: 1
}

.cart-item-details h4 {
    font-size: 14px;
    margin-bottom: 4px
}

.cart-item-details .item-price {
    color: var(--green);
    font-weight: 600;
    font-size: 14px
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px
}

.cart-item-qty button {
    width: 26px;
    height: 26px;
    border: 1px solid var(--medium-gray);
    background: var(--white);
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center
}

.cart-item-qty span {
    font-size: 14px;
    font-weight: 600
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--primary-red);
    cursor: pointer;
    font-size: 14px;
    align-self: flex-start
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--medium-gray)
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-family: Poppins,sans-serif;
    font-weight: 700;
    font-size: 18px
}

.total-amount {
    color: var(--green)
}

.cart-footer .btn {
    margin-bottom: 8px
}

.page-header {
    background: linear-gradient(135deg,var(--primary-red) 0%,var(--primary-red-dark) 100%);
    color: var(--white);
    padding: 50px 0;
    text-align: center
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 8px
}

.page-header p {
    opacity: .9;
    font-size: 16px
}

.products-page-section {
    padding: 50px 0
}

.products-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--medium-gray);
    border-radius: 50px;
    background: var(--white);
    font-family: Poppins,sans-serif;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    transition: all .3s ease
}

.filter-btn:hover,.filter-btn.active {
    border-color: var(--primary-red);
    background: var(--primary-red);
    color: var(--white)
}

.membership-page {
    padding: 60px 0
}

.membership-hero {
    text-align: center;
    margin-bottom: 50px
}

.membership-hero h2 {
    font-size: 32px;
    margin-bottom: 12px
}

.membership-hero p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 24px;
    margin-bottom: 50px
}

.tier-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all .3s ease
}

.tier-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg)
}

.tier-card .tier-level {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-red);
    font-family: Poppins,sans-serif
}

.tier-card .tier-percent {
    font-size: 48px;
    font-weight: 800;
    color: var(--green);
    font-family: Poppins,sans-serif;
    margin: 10px 0
}

.tier-card .tier-desc {
    color: #666;
    font-size: 14px
}

.about-section {
    padding: 60px 0
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 16px
}

.about-text p {
    color: #555;
    margin-bottom: 16px;
    line-height: 1.8
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover
}

.process-section {
    padding: 60px 0;
    background: var(--light-gray)
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 24px
}

.process-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow)
}

.process-card .step-num {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: Poppins,sans-serif;
    font-weight: 700;
    font-size: 20px
}

.process-card h3 {
    font-size: 16px;
    margin-bottom: 8px
}

.process-card p {
    font-size: 14px;
    color: #666
}

.contact-section {
    padding: 60px 0
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow)
}

.contact-form h2 {
    font-size: 24px;
    margin-bottom: 24px
}

.form-group {
    margin-bottom: 18px
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px
}

.form-group input,.form-group textarea,.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: Open Sans,sans-serif;
    outline: none;
    transition: border-color .3s ease
}

.form-group input:focus,.form-group textarea:focus,.form-group select:focus {
    border-color: var(--primary-red)
}

.form-group textarea {
    resize: vertical;
    min-height: 120px
}

.contact-info-card {
    background: linear-gradient(135deg,var(--primary-red) 0%,var(--primary-red-dark) 100%);
    border-radius: var(--radius);
    padding: 40px;
    color: var(--white)
}

.contact-info-card h2 {
    font-size: 24px;
    margin-bottom: 24px
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px
}

.contact-info-item i {
    font-size: 20px;
    width: 40px;
    height: 40px;
    background: #ffffff26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.contact-info-item h4 {
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 600
}

.contact-info-item p {
    font-size: 14px;
    opacity: .9
}

.checkout-section {
    padding: 60px 0
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px
}

.checkout-summary {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow)
}

.checkout-summary h2 {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--medium-gray)
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray)
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    font-family: Poppins,sans-serif;
    font-weight: 700;
    font-size: 20px
}

.checkout-total .amount {
    color: var(--green)
}

.payment-methods {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow)
}

.payment-methods h2 {
    font-size: 22px;
    margin-bottom: 20px
}

.payment-option {
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    gap: 12px
}

.payment-option:hover:not(.coming-soon) {
    border-color: var(--primary-red)
}

.payment-option.active {
    border-color: var(--green);
    background: #e8f5e9
}

.payment-option.coming-soon {
    background: #f5f5f5;
    opacity: .6;
    cursor: not-allowed
}

.payment-option i {
    font-size: 24px;
    width: 40px;
    text-align: center
}

.payment-option .payment-label {
    flex: 1
}

.payment-option .payment-label h4 {
    font-size: 15px;
    font-weight: 600
}

.payment-option .payment-label p {
    font-size: 12px;
    color: #888
}

.coming-soon-badge {
    background: #999;
    color: var(--white);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600
}

.why-choose {
    padding: 60px 0;
    background: var(--light-gray)
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 24px
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all .3s ease
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg)
}

.feature-card i {
    font-size: 36px;
    color: var(--primary-red);
    margin-bottom: 16px
}

.feature-card h3 {
    font-size: 16px;
    margin-bottom: 8px
}

.feature-card p {
    font-size: 14px;
    color: #666
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns:1fr 1fr
    }

    .about-grid,.contact-grid,.checkout-grid {
        grid-template-columns: 1fr
    }

    .hero-content h1 {
        font-size: 32px
    }
}

@media (max-width: 768px) {
    .top-bar-center,.nav-menu {
        display:none
    }

    .mobile-menu-btn {
        display: block
    }

    .nav-center {
        padding: 0 15px
    }

    .logo img {
        height: 40px
    }

    .user-info .user-name {
        display: none
    }

    .hero {
        min-height: 450px
    }

    .hero-content {
        padding: 40px 20px
    }

    .hero-content h1 {
        font-size: 26px
    }

    .hero-stats {
        flex-direction: column;
        gap: 10px
    }

    .categories-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .products-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 16px
    }

    .membership-card {
        padding: 30px 20px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center
    }

    .cart-drawer {
        width: 100%;
        right: -100%
    }

    .newsletter-form {
        flex-direction: column
    }

    .section-header h2 {
        font-size: 26px
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns:repeat(2,1fr)
    }

    .products-grid {
        grid-template-columns: 1fr
    }

    .hero-buttons {
        flex-direction: column
    }

    .combo-grid {
        grid-template-columns: 1fr
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fade-in-up {
    animation: fadeInUp .5s ease forwards
}

.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--green);
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    z-index: 5000;
    display: none;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp .3s ease
}

.toast.show {
    display: block
}


.fa-shopping-cart {
    color: var(--primary-red);
}
.float-right{float:right;}
.text-center{text-align: center;}
.text-left{text-align:left;}
.heritage-block {
    background-color: #fbede9;
    padding: 20px;
    border-radius: 12px;;
    border-left: 4px solid #e16b47;
    margin: 10px 0;
}