/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #ff6b6b;
    --primary-dark: #ff5252;
    --secondary-color: #4ecdc4;
    --dark-bg: #0f0f0f;
    --dark-section: #1a1a1a;
    --light-bg: #fafafa;
    --text-dark: #333;
    --text-light: #666;
    --text-white: #fff;
    --border-light: #e9ecef;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
}

/* Header Styles */
header {
    background-color: #000;
    color: white;
    padding: 1rem 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #333;
}

.header-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

/* Mobile Header */
.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
}

/* Hamburger Menu */
.hamburger-wrapper{
    width: 100%;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.hamburger:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Logo */
/* .logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
} */

.logo:hover {
    transform: scale(1.05);
}

.cart-search-wrapper{
    width: 100%;
    display: flex;
    justify-content: right;
}

/* Mobile Search */
.mobile-search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-search-icon {
    background: none;
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-search-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-search-expanded {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 1001;
    min-width: 280px;
    padding: 8px;
    border: 1px solid #e0e0e0;
}

.mobile-search-expanded.active {
    display: flex !important;
}

.mobile-search-expanded input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px 0 0 6px;
    font-size: 0.95rem;
    outline: none;
    border-right: none;
}

.mobile-search-expanded input:focus {
    border-color: #ff6b6b;
}

.mobile-search-expanded button {
    background-color: #ff6b6b;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.mobile-search-expanded button:hover {
    background-color: #ff5252;
}

/* Cart */
.cart, .compare {
    position: relative;
    color: white;
    text-decoration: none;
    padding: 4px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

/* Mobile Compare Icon */
.mobile-compare {
    position: relative;
    color: white !important;
    text-decoration: none;
    padding: 4px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.mobile-compare:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-compare i {
    color: white !important;
    font-size: 1.2rem;
}

.cart:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cart-badge, .compare-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid #000;
}

/* Desktop Header */
.desktop-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* gap: 30px; */
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: left;
    width: fit-content;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 8px 8px;
    border-radius: 6px;
    position: relative;
}

.nav-link:hover {
    color: #ff6b6b;
    background-color: rgba(255, 255, 255, 0.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ff6b6b;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e0e0e0;
    padding: 8px 0;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #ff6b6b;
    padding-left: 25px;
}

/* Search Bar */
.search-bar {
    /* flex: 0.6; */
    display: flex;
    margin: 0 2rem;
    max-width: 100% !important;
    /* max-width: 400px; */
}

.search-bar input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px 0 0 8px;
    font-size: 0.95rem;
    outline: none;
    border-right: none;
    transition: border-color 0.3s ease;
}

.search-bar input:focus {
    border-color: #ff6b6b;
}

.search-bar button {
    background-color: #ff6b6b;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.search-bar button:hover {
    background-color: #ff5252;
}

/* Header Icons */
.header-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.header-icons a {
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 6px;
    min-width: 50px;
}

.header-icons a:hover {
    color: #ff6b6b;
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.header-icons i {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

/* Side Navigation */
.side-nav {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.side-nav-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.side-nav-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
}

.close-side-nav {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.close-side-nav:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #333;
}

.side-nav-menu {
    padding: 15px 0;
    overflow-y: auto;
    flex: 1;
}

.side-nav-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    border-bottom: 1px solid #f5f5f5;
}

.side-nav-item:hover {
    background-color: #f8f9fa;
    color: #ff6b6b;
    padding-left: 25px;
}

.side-nav-item i:first-child {
    margin-right: 12px;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.side-nav-item .fa-chevron-down {
    margin-left: auto;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.categories-toggle.active .fa-chevron-down {
    transform: rotate(180deg);
}

/* Submenu */
.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f8f9fa;
}

.submenu-item {
    display: block;
    padding: 12px 20px 12px 52px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    border-bottom: 1px solid #eee;
}

.submenu-item:hover {
    background-color: #e9ecef;
    color: #ff6b6b;
    padding-left: 55px;
}

.submenu-item:last-child {
    border-bottom: none;
}

/* Side Nav Overlay */
.side-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

/* When menu is open */
.menu-open .side-nav {
    transform: translateX(320px);
}

.menu-open .side-nav-overlay {
    opacity: 1;
    visibility: visible;
}

.menu-open {
    overflow: hidden;
}


@media (max-width: 900px) {
    .desktop-header {
        overflow: hidden;
    }
    .nav-link {
        font-size: 0.9rem;
        gap: 2px;
    }
    header{
        padding: 1rem 20px;
    }
    .header-icons{
        gap: 1rem;
    }
    .header-icons i {
    font-size: 1rem;
}
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-header {
        display: flex;
    }

    .desktop-header {
        display: none !important;
    }

    .logo {
        font-size: 1.5rem;
        flex: 1;
        text-align: center;
        margin: 0 10px;
    }

    .mobile-search-expanded {
        min-width: 250px;
        right: -10px;
    }
}

/* Responsive breakpoint for header icons - below 928px */
@media (max-width: 928px) {
    .header-icons {
        gap: 0.5rem;
    }
    
    .header-icons a {
        min-width: 40px;
        padding: 6px;
        font-size: 0.75rem;
    }
    
    .header-icons i {
        font-size: 1rem;
        margin-bottom: 2px;
    }
    
    .header-icons span {
        font-size: 0.7rem;
    }
}

/* Additional breakpoint for 821px-767px to ensure cart visibility */
@media (max-width: 821px) and (min-width: 767px) {
    .header-icons {
        gap: 0.3rem;
    }
    
    .header-icons a {
        min-width: 35px;
        padding: 4px;
        font-size: 0.7rem;
    }
    
    .header-icons i {
        font-size: 0.9rem;
        margin-bottom: 1px;
    }
    
    .header-icons span {
        font-size: 0.65rem;
    }
    
    .search-bar {
        max-width: 250px;
        margin: 0 1rem;
    }
    
    .search-bar input {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .search-bar button {
        padding: 0 15px;
    }
}

@media (min-width: 769px) {
    .mobile-header {
        display: none !important;
    }

    .desktop-header {
        display: flex !important;
    }

    .hamburger {
        display: none;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.8rem 4%;
    }

    .mobile-search-expanded {
        min-width: 220px;
        right: -15px;
    }

    .side-nav {
        width: 280px;
        left: -280px;
    }

    .menu-open .side-nav {
        transform: translateX(280px);
    }

    .logo {
        font-size: 1.4rem;
    }
}

/* Animation for cart count updates */
.cart-count {
    animation: bounce 0.5s ease;
}

@keyframes bounce {

    0%,
    20%,
    60%,
    100% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.2);
    }

    80% {
        transform: scale(1.1);
    }
}

/* Focus styles for accessibility */
.hamburger:focus,
.mobile-search-icon:focus,
.close-side-nav:focus,
.nav-link:focus,
.dropdown-item:focus,
.side-nav-item:focus {
    outline: 2px solid #ff6b6b;
    outline-offset: 2px;
}

/* Loading state for categories */
.dropdown-menu:empty::before,
.submenu:empty::before {
    content: "Loading...";
    color: #999;
    font-style: italic;
    padding: 12px 20px;
    display: block;
}



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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* .text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
} */

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.btn-dark {
    background: var(--primary-color);
    color: var(--text-white);
}

.btn-dark:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-section) 100%);
    color: var(--text-white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-visual-mobile{
 display: none;
}

@media (max-width: 768px) {
    .hero-container {
        display: grid;
        grid-template-columns: 1fr; /* one column = vertical layout */
        gap: 80px;
    }
    .hero-visual{
        display: none;
    }
    .hero-description-modern{
        margin-left: 0 !important;
    }
    .hero-visual-mobile{
    display: block;
    scale: 0.9;
    margin-bottom: 40px;
}
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 107, 0.2);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

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

.stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-10px);
}

.floating-card {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 160px;
}

.card-1 {
    top: -40px;
    right: -20px;
}

.card-2 {
    bottom: -40px;
    left: -20px;
}

.card-3 {
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
}

.card-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 107, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-text strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
}

.card-text span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* Trust Section */
.trust-section {
    background: var(--text-white);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-light);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-item i {
    font-size: 24px;
    color: var(--primary-color);
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-item strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.trust-item span {
    font-size: 14px;
    color: var(--text-light);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    display: inline-block;
    background: rgba(255, 107, 107, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-cta {
    text-align: center;
    margin-top: 60px;
}

.categories {
    padding: 10px 0;
    background: var(--light-bg);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 135, 135, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.category-card:hover::before {
    opacity: 1;
}

.category-content {
    position: relative;
    z-index: 2;
    color: var(--text-white);
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.category-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-white);
    font-weight: 600;
    font-size: 14px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.category-link i {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.category-card:hover .category-link {
    color: var(--primary-color);
}

.category-card:hover .category-link i {
    transform: translateX(4px);
}

/* Featured Products */
.featured {
    padding: 100px 0;
    background: var(--text-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    width: 100%;
}

.product-card {
    background: var(--text-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--border-light);
}

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

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

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1rem;
    height: 40px;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
}

.add-to-cart {
    width: 100%;
    padding: 12px 0;
    background-color: var(--dark-bg);
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
    font-size: 1rem;
}

.add-to-cart:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Features Showcase */
.features-showcase {
    padding: 100px 0;
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-showcase-item {
    text-align: center;
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--text-white);
    margin: 0 auto 24px;
}

.feature-showcase-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.feature-showcase-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-section) 100%);
    color: var(--text-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.newsletter-badge {
    display: inline-block;
    background: rgba(255, 107, 107, 0.2);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.newsletter-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.newsletter-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    color: var(--text-white);
    backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

.newsletter-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    font-weight: 600;
    color: #4CAF50;
}

.newsletter-success i {
    font-size: 20px;
}

/* Loading States */
.loading {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Modern About Page Styles */

/* Modern Hero Section */
.about-hero-modern {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-section) 100%);
    padding-top: 50px;
    padding-bottom: 50px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.08) 0%, transparent 50%);
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 107, 107, 0.15);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 107, 107, 0.3);
    backdrop-filter: blur(10px);
}

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: var(--text-white);
}

.hero-description-modern {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats-modern {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 48px;
}

.stat-item-modern {
    text-align: center;
}

.stat-number-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    display: block;
    margin-bottom: 8px;
}

.stat-label-modern {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

/* Modern Counter Section */
.counter-section-modern {
    padding: 120px 0;
    background: var(--light-bg);
    position: relative;
}

.counter-header {
    text-align: center;
    margin-bottom: 80px;
}

.counter-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.counter-card-modern {
    background: var(--text-white);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.counter-icon-wrapper {
    position: relative;
    margin: 0 auto 24px;
    width: 80px;
    height: 80px;
}

.counter-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--text-white);
    position: relative;
    z-index: 2;
}

.counter-bg-effect {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    border-radius: 30px;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

.counter-content {
    position: relative;
    z-index: 2;
}

.counter-card-modern .counter-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.counter-card-modern .counter-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: block;
}

.counter-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Modern Content Sections */
.about-content-modern {
    padding: 120px 0;
    background: var(--text-white);
}

.content-row-modern {
    display: grid;
    gap: 48px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.content-row-cards {
    grid-template-columns: 1fr 1fr;
}

.content-card-modern {
    background: var(--text-white);
    border-radius: 24px;
    padding: 48px 40px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.content-card-full {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(255, 107, 107, 0.02) 100%);
    border-color: rgba(255, 107, 107, 0.2);
}

.content-card-half {
    background: var(--text-white);
    border: 1px solid var(--border-light);
}

.section-header-modern {
    text-align: center;
    margin-bottom: 48px;
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    position: relative;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    margin: 0 auto;
}

.content-card-full p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.card-icon-modern {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-white);
    margin-bottom: 24px;
}

.content-card-half h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.content-card-half p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Modern Testimonials Section */
.testimonials-section-modern {
    padding: 120px 0;
    background: var(--light-bg);
}

.testimonials-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.testimonial-card-modern {
    background: var(--text-white);
    border-radius: 20px;
    padding: 32px !important;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card-modern.featured {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(255, 107, 107, 0.02) 100%);
    border-color: rgba(255, 107, 107, 0.3);
    
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 32px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    position: relative;
    width: 60px;
    height: 60px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.testimonial-meta h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars i {
    color: #FFD700;
    font-size: 14px;
}

.testimonial-badge {
    margin-left: auto;
    width: 32px;
    height: 32px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 14px;
}

.testimonial-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0 0 20px 0;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.product-tag {
    background: rgba(255, 107, 107, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.date {
    font-size: 13px;
    color: var(--text-light);
}

.testimonials-cta {
    text-align: center;
    padding: 40px 0;
}

.testimonials-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Modern CTA Section */
.about-cta-modern {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-section) 100%);
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px, 100px 100px;
}

.cta-content-modern {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


@media (max-width: 700px) {
    .cta-content-modern{
        grid-template-columns: 1fr ;
        gap: 30px;
    }
    
}

.cta-text h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.cta-text p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 107, 107, 0.15);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 107, 107, 0.3);
    backdrop-filter: blur(10px);
}

.cta-features {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.cta-feature i {
    font-size: 20px;
    color: var(--primary-color);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
    border-radius: 16px;
}

/* Responsive Design for Modern About Page */
@media (max-width: 968px) {
    .hero-title-modern {
        font-size: 3.5rem;
    }

    .hero-stats-modern {
        gap: 40px;
    }

    .content-row-cards {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section-title-modern {
        font-size: 2.2rem;
    }

    .testimonials-grid-modern {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title-modern {
        font-size: 2.8rem;
    }

    .hero-description-modern {
        font-size: 1.1rem;
    }

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

    .content-card-modern {
        padding: 32px 24px;
    }

    .section-title-modern {
        font-size: 2rem;
    }

    .content-card-full p {
        font-size: 1rem;
    }

    .content-card-half h2 {
        font-size: 1.6rem;
    }
}

.categories,
.featured,
.features-showcase,
.newsletter {
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
}

.newsletter-form {
    flex-direction: column;
}

.category-card {
    padding: 20px;
    min-height: 250px;
}


/* .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
} */

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Cart notification animations */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

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

.success-message,
.error-message {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-weight: 500;
    animation: slideIn 0.5s ease-out;
}

/* Shop Page Styles */
.shop-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    margin-bottom: 80px;
    /* padding: 40px 20px; */
    min-height: calc(100vh - 200px);
}

/* Shop Header */
.shop-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
  height: 350px;
  background-size: cover;       /* makes the image fill */
  background-position: center;  /* keeps it centered */
  background-repeat: no-repeat; /* optional */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.shop-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.shop-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Shop Toolbar */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.shop-filters {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
    white-space: nowrap;
}

.filter-group select {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: white;
    cursor: pointer;
    font-size: 0.95rem;
    min-width: 180px;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23666' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
}

.filter-group select:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

/* Search Box */
.search-box {
    position: relative;
    min-width: 300px;
    flex: 1;
    max-width: 400px;
}

.search-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1rem;
}

.search-box input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.search-box input:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.search-box input::placeholder {
    color: #999;
}

/* Products Grid */
/* .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
} */

/* Product Card */
.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #f5f5f5;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #ff6b6b;
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.product-img {
    height: 250px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

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

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    color: #666;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 2.8em;
    display: -webkit-box;
    /* -webkit-line-clamp: 2; */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: auto;
    padding-bottom: 20px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 1rem;
    font-weight: 800;
    color: #ff6b6b;
}

.old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.add-to-cart {
    width: 100%;
    padding: 14px 0;
    background: linear-gradient(135deg, #333, #555);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.add-to-cart:hover {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.add-to-cart:active {
    transform: translateY(0);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 12px 18px;
    border: 1px solid #e0e0e0;
    background: white;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover:not(.active):not(:disabled) {
    border-color: #ff6b6b;
    color: #ff6b6b;
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    color: white;
    border-color: #ff6b6b;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.pagination-btn:disabled {
    background: #f8f9fa;
    color: #999;
    cursor: not-allowed;
    transform: none;
}

/* Loading, Error, and No Results States */
.loading,
.error,
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: #666;
    font-size: 1.1rem;
}

.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loading::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #ff6b6b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.error {
    color: #dc3545;
    background: #f8d7da;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #f5c6cb;
}

.no-results {
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.no-results::before {
    content: '🔍';
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }

    .shop-toolbar {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    /* .shop-container {
        padding: 30px 15px;
    } */

    .shop-header h1 {
        font-size: 2.5rem;
    }

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

    .shop-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 20px;
        margin: 40px 20px;
    }

    .shop-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .filter-group {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .filter-group select {
        min-width: auto;
        width: 100%;
    }

    .search-box {
        min-width: auto;
        max-width: none;
    }

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

    .product-img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    /* .shop-container {
        padding: 20px 10px;
    } */

    .shop-header h1 {
        font-size: 2rem;
    }

    .shop-header {
        margin-bottom: 40px;
    }

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

    .product-info {
        padding: 20px;
    }

    .pagination {
        gap: 4px;
    }

    .pagination-btn {
        padding: 10px 14px;
        min-width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* Animation for product cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.product-card {
    animation: fadeInUp 0.6s ease forwards;
}

.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card:nth-child(4) {
    animation-delay: 0.4s;
}

.product-card:nth-child(5) {
    animation-delay: 0.5s;
}

.product-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Filter and search animations */
.filter-group select,
.search-box input {
    transition: all 0.3s ease;
}

/* Hover effects for interactive elements */
.filter-group select:hover,
.search-box input:hover {
    border-color: #ccc;
}

/* Focus styles for accessibility */
.filter-group select:focus,
.search-box input:focus,
.pagination-btn:focus,
.add-to-cart:focus {
    outline: 2px solid #ff6b6b;
    outline-offset: 2px;
}

/* Cart button loading state */
.add-to-cart.loading {
    position: relative;
    color: transparent;
}

.add-to-cart.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Price animation */
.current-price {
    transition: color 0.3s ease;
}

.product-card:hover .current-price {
    color: #ff5252;
}

/* Category badge animation */
.product-category {
    transition: color 0.3s ease;
}

.product-card:hover .product-category {
    color: #ff6b6b;
}

/* Product Page Styles */
.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: calc(100vh - 200px);
}

/* Breadcrumb */
.breadcrumb-container {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 40px;
}

.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #ff6b6b;
}

.breadcrumb-separator {
    color: #999;
    font-size: 12px;
}

.breadcrumb-current {
    color: #333;
    font-weight: 600;
}

/* Product Page Layout */
.product-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: start;
}

/* Product Gallery */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f8f9fa;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9ecef;
    cursor: zoom-in;
}

.main-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    padding: 20px;
}

.main-image-container:hover .main-product-image {
    transform: scale(1.05);
}

.image-zoom-hint {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

.main-image-container:hover .image-zoom-hint {
    opacity: 1;
}

.thumbnail-gallery {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #ff6b6b #f0f0f0;
}

.thumbnail-gallery::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-gallery::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.thumbnail-gallery::-webkit-scrollbar-thumb {
    background: #ff6b6b;
    border-radius: 3px;
}

.thumbnail-item {
    flex: 0 0 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    border-color: #ff6b6b;
    transform: translateY(-2px);
}

/* Product Details */
.product-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-header {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 20px;
}

.product-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stars {
    color: #ffc107;
    font-size: 1.1rem;
}

.rating-text {
    color: #666;
    font-size: 0.95rem;
}

/* Price Section */
.product-price-section {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 1rem;
    font-weight: 800;
    color: #ff6b6b;
}

.original-price {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.discount-badge {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

/* Product Description */
.product-description h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;
}

.product-description p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

/* Product Features */
.product-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-item i {
    color: #4CAF50;
    font-size: 1.1rem;
}

/* Purchase Section */
.purchase-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.quantity-control label {
    font-weight: 600;
    color: #333;
    min-width: 80px;
    font-size: 1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.quantity-btn {
    background: #f8f9fa;
    border: none;
    width: 44px;
    height: 44px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.quantity-btn:hover {
    background: #e9ecef;
    color: #ff6b6b;
}

.quantity-input {
    border: none;
    width: 60px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    background: white;
    padding: 0;
}

.quantity-input:focus {
    outline: none;
}

.action-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

.wishlist-btn {
    background: white;
    border: 2px solid #ff6b6b;
    color: #ff6b6b;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.2);
}

.wishlist-btn:hover {
    background: #ff6b6b;
    color: white;
    transform: translateY(-2px);
}

/* Product Meta Info */
.product-meta-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.meta-row:last-child {
    border-bottom: none;
}

.meta-label {
    color: #666;
    font-weight: 500;
    font-size: 0.95rem;
}

.meta-value {
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Tabs Section */
.product-tabs-section {
    border-top: 1px solid #e9ecef;
    padding-top: 60px;
}

.tabs-header {
    display: flex;
    border-bottom: 2px solid #e9ecef;
    gap: 40px;
    margin-bottom: 40px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 20px 0;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    position: relative;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.tab-btn:hover,
.tab-btn.active {
    color: #ff6b6b;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ff6b6b;
}

.tabs-content {
    padding: 0 0 40px 0;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

.tab-content-inner h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #333;
    font-weight: 700;
}

.tab-content-inner p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

/* Description Highlights */
.description-highlights h4 {
    font-size: 1.3rem;
    margin: 30px 0 20px 0;
    color: #333;
    font-weight: 600;
}

.description-highlights ul {
    list-style: none;
    padding: 0;
}

.description-highlights li {
    padding: 12px 0;
    color: #555;
    position: relative;
    padding-left: 30px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.description-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Specifications Table */
.specs-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 18px 24px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
}

.spec-row:hover {
    background: #e9ecef;
}

.spec-label {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.spec-value {
    color: #666;
    font-weight: 500;
    font-size: 1rem;
}

/* Reviews Section */
.reviews-summary {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.average-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.rating-number {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.3rem;
}

.total-reviews {
    color: #666;
    font-size: 1rem;
}

.review-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.review-form h4 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
}

.review-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
    min-height: 120px;
}

.review-form textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.submit-review-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.submit-review-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

/* Loading and Error States */
.loading,
.error {
    text-align: center;
    padding: 80px 20px;
    color: #666;
    font-size: 1.1rem;
}

.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loading::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #ff6b6b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.error {
    color: #dc3545;
    background: #f8d7da;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #f5c6cb;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Responsive Design */
@media (max-width: 968px) {
    .product-page {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .product-name {
        font-size: 2.2rem;
    }

    .tabs-header {
        gap: 20px;
    }

    .product-features {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .product-container {
        padding: 20px 15px;
    }

    .breadcrumb-container {
        margin-bottom: 30px;
    }

    .product-name {
        font-size: 2rem;
    }

    .current-price {
        font-size: 1.8rem;
    }

    .original-price {
        font-size: 1.3rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .wishlist-btn {
        width: 100%;
        height: 50px;
    }

    .tabs-header {
        flex-direction: column;
        gap: 0;
    }

    .tab-btn {
        padding: 15px 0;
        text-align: left;
        border-bottom: 1px solid #e9ecef;
    }

    .purchase-section {
        padding: 25px;
    }

    .quantity-control {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .product-page {
        gap: 30px;
        margin-bottom: 50px;
    }

    .product-name {
        font-size: 1.8rem;
    }

    .product-price-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .thumbnail-item {
        flex: 0 0 60px;
        height: 60px;
    }

    .main-image-container {
        aspect-ratio: 1;
    }

    .product-features {
        flex-direction: column;
        gap: 15px;
    }

    .spec-row {
        flex-direction: column;
        gap: 8px;
        padding: 15px 20px;
    }

    .reviews-summary {
        padding: 30px 20px;
    }

    .review-form {
        padding: 20px;
    }
}

/* Success animation for add to cart */
@keyframes success {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.add-to-cart-btn.success {
    animation: success 0.6s ease;
}

/* Focus styles for accessibility */
.quantity-btn:focus,
.add-to-cart-btn:focus,
.wishlist-btn:focus,
.tab-btn:focus,
.submit-review-btn:focus {
    outline: 2px solid #ff6b6b;
    outline-offset: 2px;
}

/* Smooth transitions for interactive elements */
.thumbnail-item,
.quantity-btn,
.add-to-cart-btn,
.wishlist-btn,
.tab-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced hover effects */
.product-gallery img,
.product-features i,
.spec-row {
    transition: all 0.3s ease;
}

.product-gallery img:hover {
    transform: scale(1.02);
}

/* Custom scrollbar for tabs on mobile */
@media (max-width: 768px) {
    .tabs-header {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .tabs-header::-webkit-scrollbar {
        display: none;
    }
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 60px 5% 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.footer-column h3 {
    color: #ff6b6b;
    margin-bottom: 24px;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    border-radius: 2px;
}

.footer-column p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 4px 0;
}

.footer-links a:hover {
    color: #ff6b6b;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #ff6b6b;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Contact Info Specific Styles */
.footer-column:last-child .footer-links li {
    align-items: flex-start;
    line-height: 1.5;
}

.footer-column:last-child .footer-links i {
    color: #ff6b6b;
    width: 16px;
    text-align: center;
    margin-right: 12px;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a i {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.social-links a:hover i {
    transform: scale(1.1);
}

/* Specific social media colors on hover */
.social-links a[title="Facebook"]:hover::before {
    background: linear-gradient(135deg, #1877f2, #0d5fba);
}

.social-links a[title="Twitter"]:hover::before {
    background: linear-gradient(135deg, #1da1f2, #0c85d0);
}

.social-links a[title="Instagram"]:hover::before {
    background: linear-gradient(135deg, #e4405f, #c13584);
}

.social-links a[title="Pinterest"]:hover::before {
    background: linear-gradient(135deg, #bd081c, #9c0717);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    color: #999;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
    line-height: 1.5;
}

/* Newsletter Form Styles (if added later) */
.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: #ccc;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

.newsletter-form button {
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

/* Success Message Styles */
.newsletter-success {
    background: #4CAF50;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

.newsletter-success i {
    font-size: 1.1rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* Responsive Design */
@media (max-width: 768px) {
    footer {
        padding: 40px 5% 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a:hover {
        transform: none;
    }

    .footer-links a::before {
        display: none;
    }

    .social-links {
        justify-content: center;
    }

    .footer-column:last-child .footer-links li {
        justify-content: center;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 30px 4% 15px;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    .social-links a i {
        font-size: 1rem;
    }

    .footer-bottom {
        margin-top: 30px;
        padding-top: 20px;
        font-size: 0.85rem;
    }
}

/* Animation for footer elements */
.footer-column {
    animation: fadeInUp 0.6s ease forwards;
}

.footer-column:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-column:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-column:nth-child(4) {
    animation-delay: 0.4s;
}

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

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

/* Hover effects for entire footer columns */
.footer-column:hover h3 {
    color: #ff8787;
}

/* Focus styles for accessibility */
.footer-links a:focus,
.social-links a:focus,
.newsletter-form input:focus,
.newsletter-form button:focus {
    outline: 2px solid #ff6b6b;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    footer {
        background: #f5f5f5 !important;
        color: #333 !important;
        border-top: 2px solid #333;
    }

    .footer-column h3 {
        color: #333 !important;
    }

    .social-links,
    .newsletter-form {
        display: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: more) {
    footer {
        background: #000;
        border-top: 2px solid #fff;
    }

    .footer-column h3 {
        color: #fff;
    }

    .footer-links a {
        color: #fff;
    }

    .social-links a {
        background: #fff;
        color: #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    .footer-column,
    .footer-links a,
    .social-links a,
    .newsletter-form button {
        animation: none;
        transition: none;
    }

    .footer-links a:hover,
    .social-links a:hover,
    .newsletter-form button:hover {
        transform: none;
    }
}

/* Cart Modal Styles */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 1000;
    display: none;
    pointer-events: none;
}

.cart-modal.show {
    display: block;
    pointer-events: auto;
}

.cart-modal-content {
    position: absolute;
    background: white;
    border-radius: 12px;
    width: 380px;
    max-width: 90vw;
    max-height: 70vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    border: 1px solid #e0e0e0;
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }

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

/* Full Cart Page */
.cart-page {
    background: #f5f5f7;
    min-height: calc(100vh - 200px);
    padding: 40px 5%;
}

.cart-breadcrumb {
    max-width: 1200px;
    margin: 0 auto 20px;
}

.cart-breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #777;
}

.cart-breadcrumb-inner a {
    color: #666;
    text-decoration: none;
}

.cart-breadcrumb-inner a:hover {
    color: #ff6b6b;
}

.cart-breadcrumb-inner .current {
    color: #333;
    font-weight: 600;
}

.cart-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

.cart-main {
    background: #fff;
    border-radius: 16px;
    padding: 24px 24px 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.cart-main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 16px;
}

.cart-main-header h1 {
    margin: 0;
    font-size: 1.8rem;
}

.cart-main-header p {
    margin: 4px 0 0;
    color: #666;
    font-size: 0.95rem;
}

.clear-cart-btn {
    border: none;
    background: #ffe6e6;
    color: #e03131;
    padding: 8px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.clear-cart-btn:hover {
    background: #ffc9c9;
    transform: translateY(-1px);
}

.cart-items-list {
    border-top: 1px solid #f1f3f5;
}

.cart-items-list .cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #f1f3f5;
    align-items: center;
}

.cart-items-list .item-image img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 12px;
    background: #f8f9fa;
    padding: 8px;
}

.cart-items-list .item-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-items-list .item-name {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #222;
}

.cart-items-list .item-price {
    margin: 0;
    color: #ff6b6b;
    font-weight: 600;
}

.cart-items-list .item-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.cart-items-list .edit-btn,
.cart-items-list .remove-btn,
.cart-items-list .wishlist-btn {
    border: none;
    background: transparent;
    color: #666;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 4px 0;
    transition: color 0.2s ease;
    pointer-events: auto;
}

.cart-items-list .edit-btn:hover {
    color: #228be6;
}

.cart-items-list .edit-btn.editing {
    color: #40c057;
    cursor: pointer;
    pointer-events: auto;
}

.cart-items-list .edit-btn.editing:hover {
    color: #37b24d;
}

.cart-items-list .remove-btn:hover {
    color: #e03131;
}

.cart-items-list .wishlist-btn:hover {
    color: #ff6b6b;
}

.cart-items-list .item-quantity {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.cart-items-list .quantity-controls {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #f8f9fa;
    padding: 2px;
}

.cart-items-list .quantity-controls .quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #555;
}

.cart-items-list .quantity-controls .quantity-btn:hover {
    background: #e9ecef;
}

.cart-items-list .quantity-controls .quantity-input {
    width: 40px;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 600;
}

.cart-items-list .item-total {
    font-weight: 700;
    color: #222;
}

.cart-empty-state {
    text-align: center;
    padding: 40px 16px;
}

.cart-empty-state .empty-cart-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    color: #ff6b6b;
    font-size: 1.6rem;
}

.cart-empty-state h2 {
    margin-bottom: 8px;
}

.cart-empty-state p {
    margin-bottom: 20px;
    color: #666;
}

.cart-summary {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.summary-card,
.promo-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px 20px 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.summary-card h2 {
    margin: 0 0 16px;
    font-size: 1.2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #555;
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.1rem;
    color: #222;
}

.summary-divider {
    height: 1px;
    background: #f1f3f5;
    margin: 10px 0 14px;
}

.summary-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: #666;
    margin: 10px 0 16px;
}

.summary-note i {
    color: #2b8a3e;
    margin-top: 2px;
}

.checkout-btn {
    width: 100%;
    margin-bottom: 10px;
}

.full-width {
    width: 100%;
}

.promo-card label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #444;
}

.promo-input-row {
    display: flex;
    gap: 8px;
}

.promo-input-row input {
    flex: 1;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    font-size: 0.9rem;
}

.promo-input-row .apply-promo-btn {
    border-radius: 8px;
    padding: 10px 14px;
    border: none;
    background: #111;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
}

.promo-input-row .apply-promo-btn:hover {
    background: #000;
}

@media (max-width: 900px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        order: -1;
    }

    .cart-main-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-items-list .cart-item {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
    }

    .cart-items-list .item-quantity {
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .cart-page {
        padding: 20px 4%;
    }

    .cart-main {
        padding: 18px 16px 12px;
    }

    .summary-card,
    .promo-card {
        padding: 16px 16px 14px;
    }
}

/* About Page */
.about-page {
    background: #f5f5f7;
    min-height: calc(100vh - 200px);
    /* padding: 40px 5% 60px; */
}

.about-hero {
    max-width: 1200px;
    margin: 0 auto 40px;
}

.about-hero-inner {
    background: #111;
    color: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px;
}

.about-hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.about-hero-text p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 460px;
}

.about-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 10px;
}

.about-hero-meta {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about-stat {
    min-width: 120px;
}

.about-stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
}

.about-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.about-card {
    background: #fff;
    border-radius: 18px;
    padding: 20px 22px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.about-card h2 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.about-card p {
    color: #555;
    font-size: 0.96rem;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
}

.about-list i {
    color: #4CAF50;
    margin-top: 3px;
}

.about-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.about-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f1f3f5;
    font-size: 0.85rem;
    color: #444;
}

.about-cta {
    max-width: 1200px;
    margin: 0 auto;
}

.about-cta-inner {
    background: #111;
    color: #fff;
    border-radius: 20px;
    padding: 26px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.about-cta-inner h2 {
    margin: 0 0 6px;
    font-size: 1.5rem;
}

.about-cta-inner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .about-hero-inner {
        padding: 30px 24px;
    }

    .about-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }


    .about-hero-text h1 {
        font-size: 2rem;
    }

    .about-cta-inner {
        padding: 20px 18px;
    }
}

/* Contact Page */
.contact-page {
    background: #f5f5f7;
    min-height: calc(100vh - 200px);
    padding: 40px 5% 60px;
}

.contact-hero {
    max-width: 1200px;
    margin: 0 auto 32px;
}

.contact-hero-inner {
    background: #111;
    color: #fff;
    border-radius: 24px;
    padding: 36px 28px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 28px;
}

.contact-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 10px;
}

.contact-hero-inner h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.contact-hero-inner p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 460px;
}

.contact-hero-meta {
    display: grid;
    gap: 10px;
    min-width: 220px;
}

.contact-hero-meta a,
.contact-hero-meta p {
    color: #fff;
    font-size: 0.95rem;
}

.contact-meta-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
    margin-bottom: 2px;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: flex-start;
}

.contact-form-card,
.contact-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 22px 22px 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.contact-form-card h2,
.contact-info-card h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.contact-form-card p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form .form-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-form .form-field {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    font-size: 0.95rem;
    font-family: inherit;
    resize: vertical;
}

.contact-form textarea {
    min-height: 120px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.18);
}

.contact-submit {
    margin-top: 6px;
    align-self: flex-start;
}

.contact-disclaimer {
    font-size: 0.8rem;
    color: #777;
    margin-top: 6px;
}

.contact-success {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #e6ffed;
    color: #14532d;
    font-size: 0.9rem;
}

.contact-success i {
    color: #16a34a;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-info-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.contact-info-list i {
    color: #ff6b6b;
    font-size: 1.1rem;
    margin-top: 3px;
}

.contact-info-list strong {
    display: block;
    margin-bottom: 2px;
}

.contact-info-list p {
    margin: 0;
    color: #555;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-page {
        padding: 24px 4% 40px;
    }

    .contact-hero-inner {
        padding: 26px 20px;
    }

    .contact-hero-inner h1 {
        font-size: 1.8rem;
    }

    .contact-form .form-row {
        flex-direction: column;
    }
}

/* Modal Header */
.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
}

.cart-modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.4rem;
    font-weight: 700;
}

.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

/* Modal Body */
.cart-modal-body {
    max-height: 400px;
    overflow-y: auto;
    padding: 0;
}

.cart-items {
    padding: 0;
}

/* Empty Cart State */
.empty-cart {
    text-align: center;
    padding: 60px 24px;
    color: #666;
}

.empty-cart::before {
    content: '🛒';
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
    opacity: 0.5;
}

/* Cart Item Styles */
.cart-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
    position: relative;
}

.cart-item:hover {
    background-color: #fafafa;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-title {
    margin: 0 0 8px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    /* -webkit-line-clamp: 2; */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item-price {
    margin: 0 0 12px 0;
    color: #ff6b6b;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Quantity Controls */
.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-btn {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.quantity-btn:hover {
    background: #e9ecef;
    border-color: #ff6b6b;
    color: #ff6b6b;
}

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

.quantity-input {
    width: 50px;
    height: 32px;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    background: white;
}

.quantity-input:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.1);
}

/* Remove Item Button */
.remove-item {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #dc3545;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: flex-start;
}

.remove-item:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #c82333;
    transform: scale(1.1);
}

/* Modal Footer */
.cart-modal-footer {
    padding: 24px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
}

.cart-total span:first-child {
    color: #333;
}

.cart-total span:last-child {
    color: #ff6b6b;
}

.cart-actions {
    display: flex;
    gap: 12px;
}

/* Button Styles for Cart */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    flex: 1;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff5252, #ff4757);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn:active {
    transform: translateY(0);
}

/* Cart Count Badge */
.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    line-height: 1;
    animation: bounce 0.5s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

@keyframes bounce {

    0%,
    20%,
    60%,
    100% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.2);
    }

    80% {
        transform: scale(1.1);
    }
}

/* Cart Item Animations */
.cart-item {
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

.cart-item.removing {
    animation: slideOutLeft 0.3s ease forwards;
}

@keyframes slideOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-20px);
    }
}

/* Quantity Update Animation */
.quantity-update {
    animation: pulse 0.3s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Success Animation for Add to Cart */
.add-to-cart-success {
    animation: success 0.6s ease;
}

@keyframes success {
    0% {
        background: linear-gradient(135deg, #ff6b6b, #ff5252);
    }

    50% {
        background: linear-gradient(135deg, #4CAF50, #45a049);
        transform: scale(1.05);
    }

    100% {
        background: linear-gradient(135deg, #ff6b6b, #ff5252);
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cart-modal-content {
        width: 95vw;
        max-height: 80vh;
        right: 2.5vw !important;
        left: 2.5vw !important;
        transform: none !important;
    }

    .cart-item {
        padding: 16px 20px;
    }

    .cart-item-img {
        width: 60px;
        height: 60px;
    }

    .cart-actions {
        flex-direction: column;
    }

    .btn {
        padding: 12px 20px;
    }

    .cart-modal-header {
        padding: 20px;
    }

    .cart-modal-footer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .cart-modal-content {
        width: 100vw;
        max-height: 100vh;
        right: 0 !important;
        left: 0 !important;
        bottom: 0;
        top: auto !important;
        border-radius: 16px 16px 0 0;
        transform: none !important;
        animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }

        to {
            transform: translateY(0);
        }
    }

    .cart-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .cart-item-img {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

    .cart-item-details {
        width: 100%;
    }

    .remove-item {
        position: absolute;
        top: 16px;
        right: 16px;
    }
}

/* Scrollbar Styling */
.cart-modal-body::-webkit-scrollbar {
    width: 6px;
}

.cart-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.cart-modal-body::-webkit-scrollbar-thumb {
    background: #ff6b6b;
    border-radius: 3px;
}

.cart-modal-body::-webkit-scrollbar-thumb:hover {
    background: #ff5252;
}

/* Focus Styles for Accessibility */
.quantity-btn:focus,
.quantity-input:focus,
.remove-item:focus,
.close-modal:focus,
.btn:focus {
    outline: 2px solid #ff6b6b;
    outline-offset: 2px;
}

/* Loading State */
.cart-item.loading {
    opacity: 0.6;
    pointer-events: none;
}

.cart-item.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #ff6b6b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Error State */
.cart-item.error {
    background: #f8d7da;
    border-color: #f5c6cb;
}

/* High Contrast Mode Support */
@media (prefers-contrast: more) {
    .cart-modal-content {
        border: 2px solid #000;
    }

    .cart-item {
        border-bottom: 2px solid #000;
    }

    .quantity-btn {
        border: 2px solid #000;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

    .cart-modal-content,
    .cart-item,
    .cart-count,
    .btn {
        animation: none;
        transition: none;
    }

    .btn:hover,
    .quantity-btn:hover,
    .remove-item:hover {
        transform: none;
    }
}

/* Logo Image Styles */
.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .logo-img {
        height: 50px;
    }
}

/* Animated Banner Styles */
.animated-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    animation: bannerSlide 20s linear infinite;
    white-space: nowrap;
}

.banner-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 30px;
    font-size: 0.95rem;
    font-weight: 500;
}

.banner-item i {
    font-size: 1.1rem;
}

@keyframes bannerSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* FAQ Accordion Styles */
.faq-section {
    padding: 80px 5%;
    background-color: var(--light-bg);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Counter Section Styles */
.counter-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.counter-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.counter-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.counter-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
    color: #fff;
}

.counter-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Map Container Styles */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Split Layout Styles */
.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 40px 0;
}

@media (min-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.split-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.split-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.split-card h2 {
    margin-bottom: 20px;
    color: var(--text-dark);
    font-size: 1.8rem;
}

.split-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Testimonials Styles */
.testimonials-section {
    padding: 80px 5%;
    background-color: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.author-info p {
    margin: 5px 0 0 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.testimonial-rating {
    color: #ffc107;
    margin-top: 5px;
}

.testimonial-rating i {
    font-size: 1rem;
}

/* Christmas Sale Banner Styling */
.banner-item.christmas-special {
    background: linear-gradient(135deg, #c41e3a 0%, #165b33 100%);
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.9;
    }
}

.banner-item.christmas-special i {
    color: #ffd700;
}

/* Promotional Popup Styles */
.promo-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.promo-popup.show {
    display: flex;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.popup-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    z-index: 10001;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

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

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.popup-body {
    padding: 50px 40px 40px;
    text-align: center;
}

.popup-icon {
    font-size: 4rem;
    color: #c41e3a;
    margin-bottom: 20px;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.popup-title {
    font-size: 2rem;
    font-weight: 700;
    color: #c41e3a;
    margin-bottom: 10px;
    line-height: 1.2;
}

.popup-subtitle {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
}

.popup-code {
    background: linear-gradient(135deg, #c41e3a 0%, #165b33 100%);
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.code-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.code-value {
    color: #ffd700;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
}

.popup-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.popup-actions {
    display: flex;
    gap: 15px;
    flex-direction: column;
    margin-bottom: 20px;
}

.popup-btn,
.popup-btn-secondary {
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.popup-btn-secondary {
    background: transparent;
    border: 2px solid #ddd;
    color: #666;
}

.popup-btn-secondary:hover {
    border-color: #ff6b6b;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
}

.popup-footer {
    color: #999;
    font-size: 0.85rem;
    font-style: italic;
}

@media (min-width: 768px) {
    .popup-actions {
        flex-direction: row;
    }

    .popup-btn,
    .popup-btn-secondary {
        width: auto;
        flex: 1;
    }
}

/* Discount Styling */
.discount-item {
    color: #28a745 !important;
    font-weight: 600;
}

.discount-amount {
    color: #28a745 !important;
    font-weight: 700;
}

.apply-promo-btn:disabled {
    background-color: #28a745;
    cursor: not-allowed;
    opacity: 0.8;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* ========================================
   CHECKOUT PAGE STYLES
   ======================================== */

.checkout-page {
  min-height: 100vh;
  padding: 40px 20px;
  background: #f8f9fa;
}

.checkout-layout {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

.checkout-main {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.checkout-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}

.checkout-section {
  margin-bottom: 40px;
}



.section-title i {
  color: #ff6b6b;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #555;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

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

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.payment-option {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-option:hover {
  border-color: #ff6b6b;
  background: #fff5f5;
}

.payment-option input[type="radio"] {
  margin-right: 15px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.payment-option input[type="radio"]:checked + .payment-label {
  color: #ff6b6b;
  font-weight: 600;
}

.payment-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.payment-label i {
  font-size: 1.3rem;
}

.checkout-summary {
  position: sticky;
  top: 20px;
}

.order-items {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 20px;
}

.order-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.order-item:last-child {
  border-bottom: none;
}

.order-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.order-item-details {
  flex: 1;
}

.order-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 4px;
}

.order-item-qty {
  font-size: 0.85rem;
  color: #777;
}

.order-item-price {
  font-weight: 600;
  color: #333;
}

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

  .checkout-summary {
    position: static;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   CONFIRMATION PAGE STYLES
   ======================================== */

.confirmation-page {
  min-height: 100vh;
  padding: 40px 20px;
  background: #f8f9fa;
}

.confirmation-content {
  max-width: 900px;
  margin: 0 auto;
}

.confirmation-container {
  background: white;
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  text-align: center;
}

.confirmation-icon {
  margin-bottom: 30px;
}

.success-checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  border-radius: 50%;
  animation: scaleIn 0.5s ease;
}

.success-checkmark i {
  font-size: 50px;
  color: white;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.confirmation-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.confirmation-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
}

.order-number-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 40px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 40px;
}

.order-number-label {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.order-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6b6b;
  font-family: 'Courier New', monospace;
}

.order-details-card {
  text-align: left;
  margin-bottom: 40px;
}

.detail-section {
  padding: 25px 0;
  border-bottom: 1px solid #e0e0e0;
}

.detail-section:last-child {
  border-bottom: none;
}

.detail-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

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

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.detail-label {
  font-size: 0.85rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-value {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}

.shipping-address {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.confirmation-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.confirmation-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

.confirmation-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.confirmation-item-details {
  flex: 1;
}

.confirmation-item-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.confirmation-item-qty,
.confirmation-item-price {
  font-size: 0.9rem;
  color: #666;
}

.confirmation-item-total {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff6b6b;
}

.confirmation-summary {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
}

.next-steps {
  margin-bottom: 40px;
}

.next-steps h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
}

.step-card {
  padding: 25px 20px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.step-card i {
  font-size: 2.5rem;
  color: #ff6b6b;
  margin-bottom: 15px;
}

.step-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.confirmation-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.confirmation-actions .btn {
  min-width: 200px;
}

@media (max-width: 768px) {
  .confirmation-container {
    padding: 40px 20px;
  }

  .confirmation-title {
    font-size: 2rem;
  }

  .order-number {
    font-size: 1.4rem;
  }

  .confirmation-item {
    flex-direction: column;
    text-align: center;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .confirmation-actions {
    flex-direction: column;
  }

  .confirmation-actions .btn {
    width: 100%;
  }
}

/* Checkout and Confirmation Section Titles */
.checkout-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-section-title i {
    font-size: 1.2rem;
    color: #ff6b6b;
}
