/* ================================
   FLOWER JEWELLERY BY KHANS
   Main Stylesheet - Fixed Version
   ================================ */

/* === RESET & VARIABLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e91e63;
    --secondary: #ffc107;
    --dark: #333;
    --light: #f8f9fa;
    --white: #fff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --radius: 8px;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
}

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

/* === HEADER === */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary);
}

.logo img {
    height: 50px;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.logo-text small {
    font-size: 0.8rem;
    color: var(--dark);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.cart-link {
    position: relative;
}

.cart-badge {
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7rem;
    position: absolute;
    top: -8px;
    right: -10px;
}

.login-btn {
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius);
}

/* === BUTTONS === */
.btn-primary,
.cta-btn {
    background: var(--primary);
    color: var(--white);
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: var(--radius);
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary:hover,
.cta-btn:hover {
    background: #c2185b;
}

.btn-secondary {
    background: var(--secondary);
    color: var(--dark);
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: var(--radius);
    display: inline-block;
}

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

/* === CART PAGE === */
.cart-section {
    padding: 3rem 0;
    min-height: 70vh;
}

.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.cart-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 1rem;
    align-items: center;
}

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius);
}

.item-quantity {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.item-quantity button {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background: var(--white);
    cursor: pointer;
}

.item-quantity input {
    width: 60px;
    text-align: center;
    border: 1px solid #ddd;
    padding: 0.5rem;
}

.btn-remove {
    background: #dc3545;
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    cursor: pointer;
}

/* === CART SUMMARY - FIXED === */
.cart-summary {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    height: fit-content;
    position: sticky;
    top: 100px;
}

/* FIX: Add spacing between buttons */
.cart-summary .btn-block {
    margin-bottom: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.summary-row.total {
    font-size: 1.3rem;
    font-weight: 700;
    border-top: 2px solid #ddd;
    padding-top: 1rem;
}

.empty-cart {
    text-align: center;
    padding: 3rem;
}

/* === CHECKOUT PAGE - FIXED === */
.checkout-section {
    padding: 3rem 0;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.checkout-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
}

.checkout-form h3 {
    color: var(--primary);
    margin: 2rem 0 1rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
}

/* FIX: Better form layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-size: 1rem;
}

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

.order-summary {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    height: fit-content;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.summary-total {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--primary);
}

/* === ALERTS === */
.alert {
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.alert-error {
    background: #fee;
    color: #c00;
    border: 1px solid #fcc;
}

.alert-success {
    background: #efe;
    color: #060;
    border: 1px solid #cfc;
}

/* === AUTH PAGES === */
.auth-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.auth-box {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.auth-box h2 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

/* === FOOTER === */
.main-footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3,
.footer-col h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cart-item img {
        margin: 0 auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* === ENHANCED CART CONTROLS === */
.item-quantity {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.qty-btn {
    width: 35px;
    height: 35px;
    padding: 0;
    border: 2px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.qty-btn:active {
    transform: scale(0.95);
}

.item-quantity input {
    width: 70px;
    text-align: center;
    border: 2px solid #ddd;
    padding: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
}

.item-quantity input:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-remove {
    background: #dc3545;
    color: var(--white);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove:hover {
    background: #c82333;
    transform: scale(1.1);
}

.btn-remove span {
    line-height: 1;
}

.item-subtotal-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

/* Better cart item layout */
.cart-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: 100px 2fr 150px 100px 40px;
    gap: 1.5rem;
    align-items: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.cart-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.item-details h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.item-type {
    font-size: 0.9rem;
    color: #666;
    margin: 0.3rem 0;
}

.item-price {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
}

/* Mobile responsive for cart */
@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .cart-item img {
        margin: 0 auto;
    }
    
    .item-quantity {
        justify-content: center;
    }
    
    .btn-remove {
        margin: 0 auto;
    }
}
/* === CRITICAL MISSING STYLES === */
/* Add these to your style.css file AFTER the header styles */

/* === HERO SLIDER === */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    width: 80%;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: var(--white);
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    z-index: 3;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: rgba(0,0,0,0.8);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255,255,255,0.8);
}

/* === SECTIONS === */
.about-section,
.featured-products,
.cta-section,
.features-section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* === ABOUT SECTION === */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* === PRODUCTS GRID === */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

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

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.product-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.3rem;
    margin: 1rem 0;
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--primary), #c2185b);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-btn {
    background: var(--white);
    color: var(--primary);
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: var(--radius);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* === FEATURES GRID === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-box h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* === MOBILE RESPONSIVE FOR HOMEPAGE === */
@media (max-width: 768px) {
    .hero-slider {
        height: 300px;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}
/* === PRODUCTS PAGE STYLES === */
/* Add these to your style.css file */

.page-header {
    background: linear-gradient(135deg, var(--primary), #c2185b);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
}

/* Products Page Layout */
.products-section {
    padding: 2rem 0 4rem;
}

.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
}

/* Sidebar Styles */
.products-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.filter-box h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

/* Search Box */
.filter-box form {
    display: flex;
    gap: 0.5rem;
}

.filter-box input[type="text"] {
    flex: 1;
    padding: 0.6rem;
    border: 2px solid #ddd;
    border-radius: var(--radius);
    font-size: 0.9rem;
}

.filter-box input[type="text"]:focus {
    outline: none;
    border-color: var(--primary);
}

.filter-box button[type="submit"] {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-box button[type="submit"]:hover {
    background: #c2185b;
    transform: translateY(-2px);
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    display: block;
    padding: 0.7rem 1rem;
    color: var(--dark);
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.3s;
    font-weight: 500;
}

.category-list a:hover {
    background: var(--light);
    color: var(--primary);
    padding-left: 1.5rem;
}

.category-list a.active {
    background: var(--primary);
    color: var(--white);
}

/* Products Grid */
.products-content {
    min-height: 400px;
}

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

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f5f5f5;
}

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

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

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    line-height: 1.3;
}

.product-desc {
    color: #666;
    font-size: 0.95rem;
    margin: 0.5rem 0 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.5rem 0;
    padding: 0.5rem 0;
}

.price-label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.price-value {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.btn-view {
    background: var(--primary);
    color: var(--white);
    padding: 0.8rem;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius);
    display: block;
    margin-top: auto;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-view:hover {
    background: #c2185b;
    transform: translateY(-2px);
}

/* No Products Message */
.no-products {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.no-products h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.no-products p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .products-layout {
        grid-template-columns: 1fr;
    }
    
    .products-sidebar {
        position: static;
    }
    
    .filter-box {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .product-info h3 {
        font-size: 1.1rem;
    }
    
    .price-value {
        font-size: 1.1rem;
    }
}

/* === PRODUCT DETAILS PAGE === */
.product-details-section {
    padding: 3rem 0;
    background: var(--light);
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #666;
}

.product-details-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
}

.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
}

.badge-instock {
    background: #28a745;
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.badge-outstock {
    background: #dc3545;
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.thumbnail-gallery {
    display: flex;
    gap: 1rem;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary);
    transform: scale(1.05);
}

/* Product Info Box */
.product-info-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.product-title {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.product-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.category-badge,
.stock-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #666;
}

.category-badge svg,
.stock-info svg {
    color: var(--primary);
}

.product-description {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: var(--radius);
}

.product-description h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.product-description p {
    line-height: 1.8;
    color: #555;
}

/* Add to Cart Form */
.add-to-cart-form {
    margin-top: 2rem;
}

.form-group-product {
    margin-bottom: 2rem;
}

.form-group-product label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.required {
    color: #dc3545;
}

/* Flower Type Selector */
.flower-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.type-option {
    position: relative;
}

.type-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.type-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    border: 2px solid #ddd;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s;
    background: var(--white);
}

.type-card:hover {
    border-color: var(--primary);
    background: #fff5f8;
}

.type-option input[type="radio"]:checked + .type-card {
    border-color: var(--primary);
    background: #fff5f8;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.type-icon {
    font-size: 2rem;
}

.type-info {
    flex: 1;
}

.type-info strong {
    display: block;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.type-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Price Display */
.price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary), #c2185b);
    border-radius: var(--radius);
    margin: 1.5rem 0;
}

.price-label {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

.price-amount {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.qty-input-product {
    width: 100px;
    padding: 0.8rem;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
}

.qty-input-product:focus {
    outline: none;
    border-color: var(--primary);
}

.stock-note {
    display: block;
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

/* Product Actions */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-add-to-cart {
    background: var(--primary);
    color: var(--white);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s;
}

.btn-add-to-cart:hover {
    background: #c2185b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-out-of-stock {
    background: #6c757d;
    color: var(--white);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: not-allowed;
}

.btn-continue-shopping {
    color: var(--primary);
    text-decoration: none;
    padding: 1rem;
    text-align: center;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s;
}

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

/* Product Features */
.product-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: var(--radius);
}

.feature-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.feature-item strong {
    display: block;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .product-details-layout {
        grid-template-columns: 1fr;
    }
    
    .product-gallery {
        position: static;
    }
    
    .main-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .flower-type-selector {
        grid-template-columns: 1fr;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .main-image img {
        height: 300px;
    }
}

/* === CUSTOM ORDERS PAGE === */
.custom-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #c2185b 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-features span {
    background: rgba(255,255,255,0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
}

.custom-order-section {
    padding: 4rem 0;
    background: var(--light);
}

.custom-order-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
}

/* Info Cards */
.custom-order-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Steps List */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    background: var(--primary);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--dark);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.step-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Design Ideas */
.ideas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.idea-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #f9f9f9;
    border-radius: var(--radius);
    transition: all 0.3s;
}

.idea-item:hover {
    background: #fff5f8;
    transform: translateX(5px);
}

.idea-emoji {
    font-size: 1.8rem;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s;
}

.contact-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(5px);
}

.contact-item svg {
    flex-shrink: 0;
}

/* Form Container */
.custom-order-form-container {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #eee;
}

.form-header h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Form Groups */
.form-group-custom {
    margin-bottom: 2rem;
}

.form-group-custom label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--dark);
    font-size: 1.1rem;
}

.label-icon {
    font-size: 1.3rem;
}

.required {
    color: #dc3545;
}

.optional {
    color: #999;
    font-weight: 400;
    font-size: 0.9rem;
}

/* Custom Select */
.custom-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: var(--radius);
    font-size: 1rem;
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s;
}

.custom-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

/* Custom Textarea */
.custom-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s;
}

.custom-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.char-counter {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.char-counter small {
    font-size: 0.9rem;
}

#charCount {
    font-weight: 700;
    color: #dc3545;
}

/* File Upload */
.file-upload-wrapper {
    position: relative;
}

.file-input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2.5rem;
    border: 2px dashed #ddd;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s;
    background: #fafafa;
}

.file-label:hover {
    border-color: var(--primary);
    background: #fff5f8;
}

.file-label svg {
    color: var(--primary);
}

.file-text {
    font-weight: 600;
    color: var(--dark);
}

.file-hint {
    font-size: 0.9rem;
    color: #999;
}

.file-name {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: #e8f5e9;
    border-radius: var(--radius);
    color: #2e7d32;
    font-weight: 500;
}

/* Submit Button */
.btn-submit-custom {
    width: 100%;
    padding: 1.3rem 2rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s;
    margin-top: 2rem;
}

.btn-submit-custom:hover {
    background: #c2185b;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
}

/* Alerts with icons */
.alert {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.alert svg {
    flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .custom-order-layout {
        grid-template-columns: 1fr;
    }
    
    .custom-order-info {
        order: 2;
    }
    
    .custom-order-form-container {
        order: 1;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .ideas-grid {
        grid-template-columns: 1fr;
    }
}

/* === PRODUCTS PAGE ENHANCEMENTS === */
.products-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #c2185b 100%);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.hero-content-products h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle-products {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Sidebar Enhancements */
.filter-box h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-box h3 svg {
    color: var(--primary);
}

.category-list a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.category-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.filter-info .info-content p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.custom-cta {
    background: linear-gradient(135deg, #fff5f8, #fff);
    border: 2px solid var(--primary);
}

.custom-cta h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.custom-cta p {
    color: #666;
    margin-bottom: 1rem;
}

.btn-custom-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-custom-order:hover {
    background: #c2185b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

/* Active Filters */
.active-filters {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fff5f8;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.filter-label {
    font-weight: 600;
    color: var(--dark);
}

.filter-tag {
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-tag a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;
}

.filter-tag a:hover {
    color: #c2185b;
}

.clear-all {
    color: #dc3545;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.clear-all:hover {
    text-decoration: underline;
}

/* Results Header */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.results-header h2 {
    color: var(--primary);
    font-size: 1.8rem;
}

.results-count {
    color: #666;
    font-size: 1rem;
}

.results-count strong {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Product Card Enhancements */
.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.product-category {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.badge-limited {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff9800;
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.badge-sold-out {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #dc3545;
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.product-prices {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: var(--radius);
    margin: 1rem 0;
}

.btn-view-product {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.8rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-view-product:hover {
    background: #c2185b;
    transform: translateY(-2px);
}

/* No Products */
.no-products {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.no-products svg {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.no-products h3 {
    color: var(--dark);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.no-products p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Mobile Responsive - Products Page */
@media (max-width: 768px) {
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .active-filters {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* === HOMEPAGE ENHANCEMENTS === */

/* Slide Overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 1;
}

/* Slide Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.slide-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Slide Buttons */
.slide-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-slide {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
}

.btn-primary-slide {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary-slide:hover {
    background: #c2185b;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
}

.btn-secondary-slide {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary-slide:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

/* About Preview Section */
.about-preview-section {
    padding: 5rem 0;
    background: var(--white);
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-preview-image {
    position: relative;
}

.about-preview-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.image-overlay-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4);
}

.about-preview-text {
    padding: 2rem 0;
}

.section-label {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 1rem;
}

.about-preview-text h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-preview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.about-stats .stat {
    text-align: center;
}

.about-stats .stat strong {
    display: block;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.about-stats .stat span {
    color: #666;
    font-size: 0.95rem;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-learn-more:hover {
    background: #c2185b;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
}

/* Featured Products Section */
.featured-products-section {
    padding: 5rem 0;
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-view-all:hover {
    background: #c2185b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

/* Badge Variations */
.badge-new {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #28a745;
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Categories Section */
.categories-section {
    padding: 5rem 0;
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card {
    background: var(--white);
    border: 2px solid #eee;
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.1), transparent);
    transition: left 0.5s;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.category-card .category-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.category-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.category-card p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.category-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.category-card:hover .category-arrow {
    transform: translateX(10px);
}

/* CTA Section Enhancements */
.cta-section {
    padding: 5rem 0;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
}

.cta-btn-primary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
}

.cta-btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

.cta-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Mobile Responsive - Homepage */
@media (max-width: 992px) {
    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1.1rem;
    }
    
    .slide-buttons {
        flex-direction: column;
    }
    
    .btn-slide {
        width: 100%;
        justify-content: center;
    }
    
    .about-preview-text h2 {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* === CRITICAL FIX: Price Label Text Color (White on White Fix) === */

/* Override any existing styles - make labels DARK and VISIBLE */
.price-label {
    color: #333 !important;
    font-weight: 600 !important;
    font-size: 0.95rem;
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
}

/* Ensure ALL text within label is dark */
.price-label span {
    color: #333 !important;
}

/* Make sure emojis and text show properly */
.price-label > span:first-child {
    font-size: 1.1em;
}
