/* ============================================
   Beezos Plus - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #ff7a18;
    --primary-dark: #e6690f;
    --primary-light: #ff9a4d;
    --white: #ffffff;
    --black: #000000;
    --text-dark: #333333;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --header-height: 80px;
}

/* Override Bootstrap's default blue primary color with dark grey */
.text-primary {
    color: #495057 !important;
}

.bg-primary {
    background-color: #495057 !important;
}

.border-primary {
    border-color: #495057 !important;
}

.hero-align-items-center {
    align-items: center;
}
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h5{

    color:inherit !important;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Header Styles */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.plus-text {
    font-size: 0.9rem;
    vertical-align: super;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.cart-link {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 0;
    height: calc(100vh - var(--header-height));
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    overflow: hidden;
}

.min-vh-75 {
    min-height: calc(100vh - var(--header-height));
}

/* Hero Background Image Container */
.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    background-color: #f8f9fa;
}

/* Hero Overlay for text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    padding: 40px 0;
}

.hero-tagline {
    font-size: 5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
    white-space: nowrap;
    background-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    display: inline-block;
    border-radius: 8px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-image-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Shake Animation Keyframes */
@keyframes shake {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    10% {
        transform: translate(-10px, -8px) rotate(-2deg);
    }
    20% {
        transform: translate(12px, 10px) rotate(3deg);
    }
    30% {
        transform: translate(-8px, -10px) rotate(-3deg);
    }
    40% {
        transform: translate(10px, 8px) rotate(2deg);
    }
    50% {
        transform: translate(-12px, -8px) rotate(-2deg);
    }
    60% {
        transform: translate(8px, 10px) rotate(3deg);
    }
    70% {
        transform: translate(-10px, -10px) rotate(-3deg);
    }
    80% {
        transform: translate(12px, 8px) rotate(2deg);
    }
    90% {
        transform: translate(-8px, -8px) rotate(-2deg);
    }
}

/* Slide In from Right Animation */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Hero PNG Container */
.hero-png-container {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 50%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: transparent;
    z-index: 3;
    animation: shake 0.6s infinite;
    will-change: transform;
}

.hero-png-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    z-index: 1;
}

.hero-png-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
    animation: slideInRight 0.5s ease-in-out;
}

.hero-png-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
@media (max-width: 997px) {
.hero-align-items-center {
    align-items: flex-start;
    margin-top: 100px;
}
}

/* Responsive adjustments for hero section */
@media (max-width: 768px) {
  
    :root {
        --header-height: 70px;
    }
    
    .hero-section {
        padding: 0;
        height: calc(100vh - var(--header-height));
        min-height: calc(100vh - var(--header-height));
    }
    
    .hero-content {
        padding: 30px 15px 20px;
        z-index: 4;
    }
    
    .hero-content .row {
        margin-bottom: 0;
    }
    
    .hero-content .col-lg-6 {
        padding-right: 0;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .hero-tagline {
        font-size: 2.5rem;
        padding: 0.4rem 1rem;
        white-space: normal;
        
        margin-bottom: 0.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        display: block;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.75) 100%);
    }
    
    .hero-png-container {
        width: 500px;
        max-width: 100%;
        right: 0;
        bottom: 0;
                z-index: 2;
        transform-origin: bottom right;
        left: 0;
        margin: 0 auto;
    }
    
    .hero-png-container img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .min-vh-75 {
        min-height: calc(100vh - var(--header-height));
    }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 576px) {
    :root {
        --header-height: 65px;
    }
    
    .hero-tagline {
        font-size: 2rem;
        padding: 0.3rem 0.8rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-content .col-lg-6 {
        padding-right: 0;
    }
    
    .hero-png-container {
        width: 600px;
        max-width: 100%;
        right: 0;
        bottom: 0;
        
        transform-origin: bottom right;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
}

/* Extra extra small devices (very small phones, less than 480px) */
@media (max-width: 480px) {
    :root {
        --header-height: 60px;
    }
    
    .hero-content {
        padding: 25px 10px 15px;
    }
    
    .hero-content .col-lg-6 {
        padding-right: 0;
    }
    
    .hero-tagline {
        font-size: 1.75rem;
        padding: 0.3rem 0.7rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-buttons {
        gap: 0.5rem;
        margin-top: 0.75rem;
    }
    
    .hero-png-container {
        width: 100%;
        max-width: 100%;
       
    }
    
    .hero-section {
        height: calc(100vh - var(--header-height));
        min-height: calc(100vh - var(--header-height));
    }
    
    .feature-card {
        padding: 1rem;
    }
}

/* Fallback for browsers without animation support */
.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Section Button Override - White Style */
.hero-section .btn-outline-primary {
    color: var(--white);
    border-color: var(--white);
}

.hero-section .btn-outline-primary:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}

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

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
    background-color: var(--bg-light);
    background-image: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-add-btn {
    transform: translateY(20px);
    transition: var(--transition);
    border-radius: 25px;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.product-card:hover .quick-add-btn {
    transform: translateY(0);
}

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

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-name a {
    color: var(--text-dark);
    transition: var(--transition);
}

.product-name a:hover {
    color: var(--primary-color);
}

.product-tagline {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex-grow: 1;
    color: var(--text-muted);
    line-height: 1.5;
}

.product-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.product-pricing {
    display: flex;
    flex-direction: column;
}

.product-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-top: 0.25rem;
}

.product-weight {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-video-wrapper {
    width: 100%;
    height: 0;
    padding-bottom: 75%; /* 4:3 aspect ratio */
    background-color: var(--black);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.about-video-wrapper:hover {
    box-shadow: var(--shadow-md);
}

.about-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    background-color: var(--black);
}

/* Featured Products Section */
.featured-products-section {
    padding: 80px 0;
}

/* Why Section */
.why-section {
    padding: 80px 0;
}

.feature-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    height: 100%;
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 60px 0;
}

.cta-title {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

/* Shop Page */
.shop-page {
    min-height: 60vh;
}

.shop-page .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
}

.breadcrumb-item a {
    color: var(--text-muted);
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--text-dark);
}

.filter-card {
    position: sticky;
    top: 100px;
    border: none;
    box-shadow: var(--shadow-sm);
}

.filter-card .card-header {
    border-radius: 15px 15px 0 0;
    padding: 1rem 1.25rem;
}

.filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.filter-link {
    display: flex;
    align-items: center;
    padding: 0.875rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.filter-link i {
    width: 20px;
    text-align: center;
}

.filter-link:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    transform: translateX(5px);
}

.filter-link.active {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.empty-state {
    padding: 4rem 2rem;
}

.empty-state-icon {
    opacity: 0.6;
}

/* Product Detail Page */
.product-detail-page {
    min-height: 60vh;
}

.product-detail-page .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--white);
    padding: 0.5rem;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.thumbnail-images {
    flex-wrap: wrap;
    gap: 0.75rem;
}

.thumbnail-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.thumbnail-img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.thumbnail-img.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 122, 24, 0.2);
}

.product-header {
    margin-bottom: 1.5rem;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.product-tagline {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.product-price-section {
    padding: 1.5rem 0;
}

.product-price-large {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.product-features-list {
    padding-left: 0;
    margin: 0;
}

.product-features-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
}

.product-features-list li i {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.product-description {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
}

.product-description h6 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
}

.quantity-input-group {
    max-width: 180px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.quantity-input-group .btn {
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    font-weight: 600;
}

.quantity-input-group .form-control {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
}

.product-actions {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
}

.product-trust-badges {
    background-color: var(--bg-light);
    border-radius: 10px;
}

.trust-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.trust-item i {
    width: 24px;
    text-align: center;
}

/* Cart Page */
.cart-page {
    min-height: 60vh;
}

.cart-page .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cart-item {
    padding: 1.5rem 0;
    transition: var(--transition);
}

.cart-item:hover {
    background-color: var(--bg-light);
    border-radius: 10px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.cart-item-image {
    width: 100%;
    max-width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    transition: var(--transition);
}

.cart-item:hover .cart-item-image {
    transform: scale(1.05);
}

.cart-quantity-controls {
    max-width: 140px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cart-quantity-controls .btn {
    border: 1px solid var(--border-color);
    padding: 0.5rem 0.75rem;
}

.cart-quantity-controls .form-control {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

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

.order-summary-item {
    padding: 0.5rem 0;
}

.free-delivery-progress {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.free-delivery-progress .progress {
    border-radius: 10px;
    background-color: #e9ecef;
}

.empty-cart-state {
    padding: 4rem 2rem;
}

.empty-cart-state .empty-state-icon {
    opacity: 0.5;
}

/* Checkout Page */
.checkout-page {
    min-height: 60vh;
}

.checkout-page .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Checkout Progress */
.checkout-progress {
    margin-bottom: 3rem;
}

.progress-steps {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 0;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
}

.step.completed .step-circle {
    background-color: var(--success-color);
    border-color: var(--success-color);
    color: var(--white);
}

.step.active .step-circle {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.step-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.step.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

.step.completed .step-label {
    color: var(--success-color);
}

.payment-method-card {
    background-color: var(--bg-light);
    transition: var(--transition);
}

.payment-method-card:hover {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
}

.payment-method-card .form-check-label {
    cursor: pointer;
    width: 100%;
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-control {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 122, 24, 0.15);
    outline: none;
}

.form-control-lg {
    padding: 1rem 1.25rem;
    font-size: 1rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* About Page */
.about-page {
    min-height: 60vh;
}

/* Legal Pages */
.legal-page {
    min-height: 60vh;
}

.legal-page .card-body h2 {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 2rem;
}

.legal-page .card-body h3 {
    color: var(--dark);
    font-weight: 500;
    margin-top: 1.5rem;
}

.legal-page .card-body ul,
.legal-page .card-body ol {
    padding-left: 1.5rem;
}

.legal-page .card-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Contact Page */
.contact-page {
    min-height: 60vh;
}

.contact-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.contact-icon {
    color: var(--primary-color);
}

/* Footer */
.main-footer {
    margin-top: 80px;
}

.main-footer a {
    transition: var(--transition);
}

.main-footer a:hover {
    color: var(--primary-color) !important;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #25d366;
    transform: scale(1.1);
    color: var(--white);
}

/* Error Pages */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .filter-card {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }
    
    .product-gallery {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }
    
    /* Breadcrumb */
    .breadcrumb {
        font-size: 0.875rem;
    }
    
    /* Shop Page */
    .shop-page .page-title {
        font-size: 2rem;
    }
    
    /* Product Detail */
    .product-detail-page .page-title {
        font-size: 2rem;
    }
    
    .product-title {
        font-size: 1.75rem;
    }
    
    .product-price-large {
        font-size: 2rem;
    }
    
    .quantity-input-group {
        max-width: 100%;
    }
    
    .product-actions .d-md-flex {
        flex-direction: column;
    }
    
    .product-actions .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    /* Cart Page */
    .cart-page .page-title {
        font-size: 2rem;
    }
    
    .cart-item {
        padding: 1rem 0;
    }
    
    .cart-item-image {
        max-width: 100px;
        height: 100px;
    }
    
    .cart-quantity-controls {
        max-width: 100%;
    }
    
    /* Checkout Page */
    .checkout-page .page-title {
        font-size: 2rem;
    }
    
    .checkout-progress {
        margin-bottom: 2rem;
    }
    
    .progress-steps {
        max-width: 100%;
    }
    
    .step-circle {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    /* About Section */
    .about-section {
        padding: 40px 0;
    }
    
    .about-video-wrapper {
        margin-top: 2rem;
        padding-bottom: 70%; /* Slightly different aspect ratio for mobile */
    }

    /* Featured Products Section */
    .featured-products-section {
        padding: 40px 0;
    }
    
    /* Why Section */
    .why-section {
        padding: 40px 0;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 40px 0;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-section .row {
        flex-direction: column;
    }
    
    .cta-section .col-lg-4 {
        text-align: center !important;
        margin-top: 1rem;
    }
    
    /* Button adjustments */
    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    /* Product Cards */
    .product-image-wrapper {
        height: 220px;
    }
    
    .product-info {
        padding: 1.25rem;
    }
    
    .product-name {
        font-size: 1.1rem;
    }
    
    .product-price {
        font-size: 1.5rem;
    }
}

/* Enhanced Card Styles */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-header {
    border-radius: 15px 15px 0 0;
    font-weight: 600;
}

.card-body {
    padding: 1.5rem;
}

/* Enhanced Form Styles */
.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 122, 24, 0.15);
}

/* Section Spacing */
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Enhanced Empty States */
.empty-state,
.empty-cart-state {
    padding: 4rem 2rem;
}

.empty-state-icon,
.empty-cart-state .empty-state-icon {
    opacity: 0.4;
    margin-bottom: 1.5rem;
}

/* Utility Classes */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.shadow-custom {
    box-shadow: var(--shadow-md);
}

.fw-semibold {
    font-weight: 600;
}
