/* =========================================
assets/css/beauty-styles.css
OKOSTONE BEAUTY - GREEN NATURE THEME
========================================= */

:root {
    /* Primary Green Colors */
    --beauty-green: #2E7D32;
    --beauty-green-light: #81C784;
    --beauty-green-dark: #1B5E20;
    --beauty-green-pale: #E8F5E9;
    --beauty-green-mint: #A5D6A7;
    --beauty-green-fresh: #4CAF50;
    --beauty-green-lime: #8BC34A;
    --beauty-green-forest: #1B4D3D;
    
    /* Gold/Accent Colors - Keep some warmth */
    --beauty-gold: #D4A017;
    --beauty-gold-light: #F5E6A3;
    --beauty-gold-dark: #B8860B;
    
    /* Neutral Colors */
    --beauty-white: #FFFFFF;
    --beauty-bg: #F5FAF5;
    --beauty-text: #1A3A2A;
    --beauty-text-light: #2E7D32;
    
    /* Status Colors */
    --beauty-success: #2E7D32;
    --beauty-warning: #F59E0B;
    --beauty-danger: #EF4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    background: var(--beauty-bg);
    color: var(--beauty-text);
    overflow-x: hidden;
}

/* =========================================
CONTAINER - FIXED
========================================= */

.container-custom {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 60px 0;
}

/* =========================================
TOP BAR
========================================= */

.top-bar {
    background: var(--beauty-green-dark);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.top-bar a:hover {
    color: var(--beauty-gold);
}

/* =========================================
NAVBAR - FIXED
========================================= */

.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar .container-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(135deg, var(--beauty-green), var(--beauty-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.navbar-toggler {
    background: transparent;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    display: none;
}

.collapse {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    gap: 5px;
}

.nav-item {
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--beauty-text);
    font-weight: 500;
    padding: 8px 16px;
    transition: 0.3s;
    display: block;
}

.nav-link:hover,
.nav-link.active {
    color: var(--beauty-green);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    color: var(--beauty-text);
}

.icon-btn:hover {
    background: var(--beauty-green);
    color: white;
}

.cart-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--beauty-green), var(--beauty-green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    position: relative;
    transition: 0.3s;
}

.cart-btn:hover {
    transform: scale(1.05);
    color: white;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--beauty-gold);
    color: var(--beauty-text);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    padding: 10px;
    display: none;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: var(--beauty-text);
    border-radius: 12px;
    transition: 0.3s;
}

.dropdown-item:hover {
    background: var(--beauty-green-pale);
    color: var(--beauty-green-dark);
}

/* =========================================
BUTTONS
========================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--beauty-green), var(--beauty-green-dark));
    color: white;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--beauty-green-dark), var(--beauty-green));
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.3);
    color: white;
}

.btn-outline-beauty {
    background: transparent;
    border: 2px solid var(--beauty-green);
    color: var(--beauty-green);
}

.btn-outline-beauty:hover {
    background: var(--beauty-green);
    color: white;
}

/* =========================================
HERO SECTION
========================================= */

.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #F5FAF5 0%, #E8F5E9 100%);
    margin-top: 80px;
}

.hero-section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.hero-section .col-lg-6 {
    flex: 1;
    min-width: 280px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--beauty-green-dark), var(--beauty-green-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content p {
    color: var(--beauty-text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.hero-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* =========================================
SECTION TITLES
========================================= */

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: var(--beauty-text);
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--beauty-green), var(--beauty-gold));
    border-radius: 3px;
}

.section-title p {
    color: var(--beauty-text-light);
    max-width: 600px;
    margin: 20px auto 0;
}

/* =========================================
CATEGORY CARDS
========================================= */

.categories-section {
    padding: 60px 0;
    background: white;
}

.categories-section .row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.categories-section .col-lg-3,
.categories-section .col-md-6 {
    flex: 1;
    min-width: 250px;
}

.category-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}

.category-card:hover {
    transform: translateY(-8px);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 58, 42, 0.85), transparent);
    padding: 30px 20px;
    text-align: center;
}

.category-overlay h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.category-btn {
    display: inline-block;
    background: var(--beauty-gold);
    color: var(--beauty-text);
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.category-btn:hover {
    background: var(--beauty-green);
    color: white;
}

/* =========================================
PRODUCT CARDS
========================================= */

.featured-products,
.popular-strip-section {
    padding: 60px 0;
}

.featured-products .row,
.popular-strip-section .row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.featured-products .col-lg-3,
.popular-strip-section .col-lg-3,
.shop-section .col-lg-4 {
    flex: 1;
    min-width: 250px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.badge-sale {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--beauty-green), var(--beauty-green-dark));
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--beauty-green);
    transition: 0.3s;
    z-index: 2;
}

.wishlist-btn:hover {
    background: var(--beauty-green);
    color: white;
}

.product-info {
    padding: 18px;
}

.product-category {
    font-size: 0.75rem;
    color: var(--beauty-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info h4 {
    font-size: 1rem;
    margin: 8px 0;
    font-weight: 600;
    color: var(--beauty-text);
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--beauty-green-dark);
}

.old-price {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

.add-cart-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--beauty-green), var(--beauty-green-dark));
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 12px;
    transition: 0.3s;
}

.add-cart-btn:hover {
    background: linear-gradient(135deg, var(--beauty-green-dark), var(--beauty-green));
    color: white;
}

/* =========================================
POPULAR PRODUCTS STRIP
========================================= */

.popular-strip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.popular-mini-tag {
    display: inline-block;
    background: rgba(46, 125, 50, 0.1);
    color: var(--beauty-green);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.popular-strip-header h2 {
    font-size: 2rem;
    margin: 0;
    color: var(--beauty-text);
}

.popular-product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.popular-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--beauty-gold);
    color: var(--beauty-text);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.popular-product-image {
    height: 240px;
    overflow: hidden;
}

.popular-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-product-content {
    padding: 18px;
}

.popular-category {
    font-size: 0.7rem;
    color: var(--beauty-green);
    text-transform: uppercase;
}

.popular-product-content h3 {
    font-size: 1rem;
    margin: 8px 0;
    color: var(--beauty-text);
}

.popular-rating {
    color: var(--beauty-gold);
    margin-bottom: 10px;
}

.popular-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popular-price-row h4 {
    font-size: 1.2rem;
    color: var(--beauty-green-dark);
    margin: 0;
}

.popular-buy-btn {
    background: var(--beauty-green);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.8rem;
    transition: 0.3s;
}

.popular-buy-btn:hover {
    background: var(--beauty-green-dark);
    color: white;
}

/* =========================================
PROMO CAROUSEL
========================================= */

.promo-carousel-section {
    padding: 40px 0;
}

.carousel {
    position: relative;
}

.carousel-inner {
    border-radius: 30px;
    overflow: hidden;
}

.carousel-item {
    position: relative;
}

.promo-slide {
    position: relative;
}

.promo-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.promo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 50px;
    color: white;
}

.promo-overlay span {
    display: inline-block;
    background: var(--beauty-gold);
    color: var(--beauty-text);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.promo-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

/* =========================================
FLASH SALE
========================================= */

.flash-sale-section {
    padding: 60px 0;
}

.flash-sale-wrapper {
    background: linear-gradient(135deg, #1B4D3D, #2E7D32);
    border-radius: 40px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.flash-sale-wrapper .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.flash-sale-content {
    color: white;
}

.flash-badge {
    display: inline-block;
    background: var(--beauty-gold);
    color: var(--beauty-text);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.flash-sale-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.flash-sale-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.countdown-wrapper {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 15px 25px;
    text-align: center;
    min-width: 80px;
}

.countdown-box h3 {
    font-size: 1.8rem;
    color: var(--beauty-gold);
    margin-bottom: 5px;
}

.flash-sale-image img {
    width: 100%;
    border-radius: 30px;
    height: 400px;
    object-fit: cover;
}

/* =========================================
VIDEO SECTION
========================================= */

.video-showcase-section {
    padding: 60px 0;
}

.video-showcase-section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.video-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--beauty-text);
}

.video-tag {
    display: inline-block;
    background: rgba(46, 125, 50, 0.1);
    color: var(--beauty-green);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.video-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
}

.video-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    border: none;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.video-play-btn:hover {
    background: var(--beauty-green);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

/* =========================================
TESTIMONIALS
========================================= */

.testimonials-section {
    padding: 60px 0;
    background: white;
}

.testimonials-section .row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.testimonials-section .col-lg-4 {
    flex: 1;
    min-width: 280px;
}

.testimonial-card {
    background: var(--beauty-bg);
    border-radius: 25px;
    padding: 25px;
    transition: 0.3s;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header h5 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--beauty-text);
}

.testimonial-header span {
    font-size: 0.8rem;
    color: #666;
}

.testimonial-rating {
    color: var(--beauty-gold);
    margin-bottom: 12px;
}

.testimonial-card p {
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

/* =========================================
NEWSLETTER
========================================= */

.newsletter-section {
    padding: 60px 0;
}

.newsletter-box {
    background: linear-gradient(135deg, var(--beauty-green), var(--beauty-green-dark));
    border-radius: 40px;
    padding: 50px;
    text-align: center;
    color: white;
}

.newsletter-box h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 30px auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    outline: none;
    font-size: 1rem;
}

.newsletter-form button {
    background: var(--beauty-gold);
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--beauty-text);
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: var(--beauty-gold-dark);
    transform: translateY(-2px);
}

/* =========================================
FOOTER
========================================= */

.footer {
    background: #1A3A2A;
    color: white;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer .row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer .col-lg-4,
.footer .col-lg-2 {
    flex: 1;
    min-width: 200px;
}

.footer h5 {
    color: var(--beauty-gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: var(--beauty-green-light);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--beauty-green-light);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================================
FLOATING SOCIALS
========================================= */

.floating-socials {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-float {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-float:hover {
    transform: scale(1.1);
    color: white;
}

.whatsapp { background: #25D366; }
.instagram { background: radial-gradient(circle at 30% 110%, #ffdb70, #e4405f, #833ab4); }
.facebook { background: #1877F2; }
.tiktok { background: #000000; }

/* =========================================
SHOP PAGE - SIDEBAR
========================================= */

.shop-section {
    padding: 60px 0;
}

.shop-section .row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.shop-section .col-lg-3 {
    flex: 1;
    min-width: 260px;
}

.shop-section .col-lg-9 {
    flex: 3;
    min-width: 300px;
}

.shop-sidebar {
    background: white;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

.filter-box {
    margin-bottom: 25px;
}

.filter-box h5 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--beauty-text);
}

.form-control,
.form-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 0.9rem;
}

/* =========================================
EMPTY STATE
========================================= */

.empty-products {
    background: white;
    border-radius: 25px;
    padding: 60px 20px;
    text-align: center;
}

.empty-products h3 {
    margin-top: 15px;
    color: var(--beauty-text);
}

/* =========================================
RESPONSIVE
========================================= */

@media (max-width: 1200px) {
    .container-custom {
        width: 95%;
    }
}

@media (max-width: 992px) {
    .navbar-toggler {
        display: block;
    }
    
    .collapse {
        display: none;
        width: 100%;
    }
    
    .collapse.show {
        display: block;
    }
    
    .navbar-nav {
        flex-direction: column;
        padding: 20px;
        background: white;
        border-radius: 20px;
        margin-top: 15px;
    }
    
    .navbar-actions {
        margin-top: 15px;
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .promo-overlay h2 {
        font-size: 1.5rem;
    }
    
    .promo-overlay {
        padding: 20px;
    }
    
    .flash-sale-wrapper {
        padding: 30px;
    }
    
    .flash-sale-content h2 {
        font-size: 1.8rem;
    }
    
    .countdown-box {
        padding: 10px 15px;
        min-width: 65px;
    }
    
    .countdown-box h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 40px 0;
    }
    
    .hero-section {
        margin-top: 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .popular-strip-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .popular-strip-header h2 {
        font-size: 1.5rem;
    }
    
    .promo-slide img {
        height: 350px;
    }
    
    .promo-overlay h2 {
        font-size: 1.2rem;
    }
    
    .flash-sale-wrapper .row {
        flex-direction: column;
    }
    
    .flash-sale-content {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .countdown-wrapper {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .video-showcase-section .row {
        flex-direction: column;
    }
    
    .video-content {
        text-align: center;
    }
    
    .footer .row {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container-custom {
        width: 92%;
        padding: 0 10px;
    }
    
    .category-card {
        height: 260px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .floating-socials {
        right: 10px;
        bottom: 10px;
    }
    
    .social-float {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .social-float.tiktok {
        background: #000000;
    }

    .social-float.tiktok:hover {
        background: #FE2C55;
        transform: scale(1.1);
    }
}

/* Additional Button Styles */
.btn-outline-pink {
    border: 2px solid var(--beauty-green);
    background: transparent;
    color: var(--beauty-green);
    transition: 0.3s;
}

.btn-outline-pink:hover {
    background: var(--beauty-green);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-danger {
    border: 1px solid #DC2626;
    color: #DC2626;
    background: transparent;
}

.btn-outline-danger:hover {
    background: #DC2626;
    color: white;
}

.rounded-pill {
    border-radius: 50px !important;
}

.payment-option:hover {
    border-color: var(--beauty-green) !important;
    background: #F5FAF5;
}

/* Logo Styles */
.okostone-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-icon-wrapper {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon-wrapper .wig-icon {
    font-size: 2rem;
    line-height: 1;
}

.logo-icon-wrapper .ring {
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--beauty-green);
    animation: spin 10s linear infinite;
}

.logo-icon-wrapper .ring::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--beauty-gold);
    border-radius: 50%;
    transform: translateX(-50%);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo-text .oko {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--beauty-text);
    letter-spacing: -0.5px;
}

.logo-text .stone {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--beauty-green), var(--beauty-green-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-text .beauty-tag {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--beauty-green);
    background: var(--beauty-green-pale);
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 5px;
    letter-spacing: 0.5px;
}

/* Wig SVG Icon */
.wig-svg-icon {
    width: 40px;
    height: 40px;
}

/* Category Banner on Category Page */
.category-banner-section .category-banner {
    background: linear-gradient(135deg, #F5FAF5, #E8F5E9);
    border-radius: 24px;
    overflow: hidden;
    padding: 30px;
    position: relative;
}

.category-tag {
    display: inline-block;
    background: rgba(46, 125, 50, 0.15);
    color: var(--beauty-green-dark);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Product Page Styles */
.product-price-wrapper .product-price {
    color: var(--beauty-green-dark);
}

.product-rating .text-warning {
    color: var(--beauty-gold) !important;
}

.how-to-use {
    background: var(--beauty-green-pale) !important;
}

.stock-status .text-success {
    color: var(--beauty-green) !important;
}

/* Cart Page Styles */
.cart-summary .grand-total {
    color: var(--beauty-green-dark);
}

/* Checkout Page Styles */
.checkout-form h4,
.order-summary h4 {
    color: var(--beauty-green-dark);
}

.order-summary .trust-badges i {
    color: var(--beauty-green);
}

/* Admin Panel Green Theme Override */
.admin-sidebar .active {
    background: linear-gradient(90deg, var(--beauty-green), var(--beauty-green-dark));
}

.btn-pink {
    background: linear-gradient(135deg, var(--beauty-green), var(--beauty-green-dark));
}

.btn-pink:hover {
    background: linear-gradient(135deg, var(--beauty-green-dark), var(--beauty-green));
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.btn-outline-pink {
    border: 2px solid var(--beauty-green);
    color: var(--beauty-green);
}

.btn-outline-pink:hover {
    background: var(--beauty-green);
    color: white;
}

.stat-number {
    color: var(--beauty-green-dark);
}

.stat-icon.revenue { background: #E8F5E9; color: var(--beauty-green); }
.stat-icon.orders { background: #E8F5E9; color: var(--beauty-green-dark); }
.stat-icon.products { background: #E8F5E9; color: var(--beauty-green-light); }
.stat-icon.customers { background: #E8F5E9; color: var(--beauty-green-forest); }

.text-pink { color: var(--beauty-green); }
.text-pink:hover { color: var(--beauty-green-dark); }

.badge-pink {
    background: var(--beauty-green-pale);
    color: var(--beauty-green-dark);
}