* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hind Siliguri', sans-serif;
}

:root {
    --primary: #ff6b35;
    --primary-dark: #e55a2b;
    --secondary: #2d3436;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #636e72;
    --border: #e0e0e0;
    --success: #00b894;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    background: var(--light);
    color: var(--secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== হেডার ==================== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.top-bar {
    background: linear-gradient(90deg, #2d3436 0%, #1a1d1e 100%);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.top-bar-content p {
    opacity: 0.95;
}

.top-bar-links {
    display: flex;
    gap: 20px;
}

.top-bar-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.top-bar-links a:hover {
    opacity: 1;
}

.main-header {
    padding: 15px 0;
    background: var(--white);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c42 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.35);
    transform: rotate(-5deg);
    transition: transform 0.3s;
}

.logo a:hover .logo-icon {
    transform: rotate(0deg) scale(1.05);
}

.logo-text h1 {
    font-size: 1.4rem;
    color: var(--secondary);
    line-height: 1.1;
}

.logo-text h1 span {
    color: var(--primary);
}

.logo-text small {
    font-size: 0.7rem;
    color: var(--gray);
    font-weight: 500;
}

.navbar {
    display: flex;
    gap: 8px;
    flex-grow: 1;
    justify-content: center;
}

.navbar a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 10px;
    transition: all 0.3s;
    position: relative;
    font-size: 0.95rem;
}

.navbar a::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
    border-radius: 2px;
}

.navbar a:hover {
    color: var(--primary);
    background: rgba(255, 107, 53, 0.06);
}

.navbar a:hover::before,
.navbar a.active::before {
    width: 30px;
}

.navbar a.active {
    color: var(--primary);
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--light);
    border-radius: 12px;
    padding: 4px 4px 4px 16px;
    border: 2px solid transparent;
    transition: all 0.3s;
    min-width: 280px;
}

.search-box:focus-within {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.15);
}

.search-icon {
    color: var(--gray);
    flex-shrink: 0;
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    padding: 8px 10px;
    flex-grow: 1;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--secondary);
}

.search-box input::placeholder {
    color: #b2bec3;
}

.search-box button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 9px 18px;
    border-radius: 9px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.search-box button:hover {
    background: var(--primary-dark);
}

.icon-btn {
    background: transparent;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--secondary);
    position: relative;
    transition: all 0.3s;
}

.icon-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
}

.icon-btn .badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid var(--white);
}

.cart-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c42 100%);
    color: var(--white);
    border: none;
    padding: 10px 18px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    font-family: inherit;
}

.cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.cart-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.cart-info small {
    font-size: 0.7rem;
    opacity: 0.9;
    font-weight: 500;
}

.cart-count {
    font-size: 1rem;
    font-weight: 700;
}

.menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--secondary);
}

/* ==================== হিরো সেকশন ==================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 70px 0 0;
    color: var(--white);
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: #ff6b35;
    top: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: #f093fb;
    bottom: -100px;
    right: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: #4facfe;
    top: 50%;
    left: 50%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
    padding-bottom: 60px;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 25px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    position: relative;
    animation: pulse 1.5s infinite;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #4ade80;
    animation: pulseRing 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(90deg, #fdcb6e 0%, #ff7675 50%, #fd79a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.92;
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: var(--white);
    border: none;
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    max-width: fit-content;
}

.stat-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.stat-item p {
    font-size: 0.8rem;
    opacity: 0.8;
    margin: 0;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.25);
}

.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-main-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.circle-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateSlow 20s linear infinite reverse;
}

.big-icon {
    font-size: 8rem;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.discount-badge {
    position: absolute;
    top: -20px;
    right: -30px;
    background: linear-gradient(135deg, #ff6b35, #ff4757);
    color: var(--white);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.5);
    border: 3px solid var(--white);
    transform: rotate(-15deg);
}

.discount-badge span {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}

.discount-badge small {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.9;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--secondary);
    animation: floatCard 4s ease-in-out infinite;
}

.card-1 {
    top: 20px;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 0;
    animation-delay: 1s;
}

.card-3 {
    bottom: 30px;
    left: 30px;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.fc-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.fc-info p {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    color: var(--secondary);
}

.fc-info span {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
}

.brand-strip {
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-list {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.brand-list > span {
    font-size: 0.9rem;
    opacity: 0.85;
    font-weight: 500;
}

.brand-items {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.brand-items span {
    font-size: 1.1rem;
    font-weight: 700;
    opacity: 0.7;
    transition: opacity 0.3s;
    letter-spacing: 0.5px;
    font-style: italic;
}

.brand-items span:hover {
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== সেকশন টাইটেল ==================== */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* ==================== ক্যাটাগরি ==================== */
.categories {
    padding: 70px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.category-card h3 {
    font-size: 1.1rem;
    color: var(--secondary);
}

/* ==================== পণ্য ==================== */
.products {
    padding: 70px 0;
    background: var(--white);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    background: var(--light);
    border: 2px solid var(--border);
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* পণ্যের ছবি — ইমেজ সাপোর্ট সহ */
.product-image {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.product-rating {
    color: #fdcb6e;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.product-rating span {
    color: var(--gray);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    margin-top: auto;
}

.price-current {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.price-old {
    font-size: 1rem;
    color: var(--gray);
    text-decoration: line-through;
}

.add-to-cart {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
}

.add-to-cart:hover {
    background: var(--primary);
}

.add-to-cart:active {
    transform: scale(0.98);
}

/* ==================== কার্ট সাইডবার ==================== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.cart-header h2 {
    font-size: 1.3rem;
}

.close-cart {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
    transition: color 0.3s;
}

.close-cart:hover {
    color: var(--primary);
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* কার্ট আইটেম ইমেজ */
.cart-item-image {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 1rem;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    background: var(--light);
    border: 1px solid var(--border);
    width: 28px;
    height: 28px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.qty-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.qty-value {
    font-weight: 600;
    min-width: 25px;
    text-align: center;
}

.remove-item {
    background: transparent;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 1.2rem;
    margin-left: auto;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
}

.empty-cart-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
    background: var(--light);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cart-total span:last-child {
    color: var(--primary);
}

.btn-checkout {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.3s;
}

.btn-checkout:hover {
    background: var(--primary-dark);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==================== মডাল ==================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    max-width: 450px;
    position: relative;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
    line-height: 1;
}

.close-modal:hover {
    color: var(--primary);
}

.modal-content h2 {
    margin-bottom: 20px;
    color: var(--secondary);
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-content input,
.modal-content textarea,
.modal-content select {
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s;
}

.modal-content input:focus,
.modal-content textarea:focus,
.modal-content select:focus {
    border-color: var(--primary);
}

.modal-content textarea {
    resize: vertical;
    min-height: 80px;
}

/* ==================== ফুটার ==================== */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-col p {
    color: #b2bec3;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #b2bec3;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #b2bec3;
}

/* ==================== টোস্ট ==================== */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--success);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transition: all 0.4s;
    z-index: 3000;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ============================================= */
/* ফ্ল্যাশ সেল সেকশন */
/* ============================================= */
.flash-sale {
    padding: 70px 0;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dd 100%);
}

.flash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.flash-title {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 10px;
}

.flash-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.flash-subtitle {
    color: var(--gray);
    font-size: 1rem;
}

.countdown {
    display: flex;
    gap: 12px;
}

.countdown-item {
    background: var(--white);
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
    min-width: 70px;
    box-shadow: var(--shadow);
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.countdown-num {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
}

.flash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.flash-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 18px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.flash-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.flash-image {
    position: relative;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    flex-shrink: 0;
    overflow: hidden;
}

.flash-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flash-discount {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff4757, #ff6b35);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.4);
    z-index: 2;
}

.flash-info {
    flex-grow: 1;
}

.flash-info h3 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.flash-progress {
    width: 100%;
    height: 8px;
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 6px;
}

.flash-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #ff4757);
    border-radius: 10px;
    transition: width 0.5s;
}

.flash-stock {
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 10px;
}

.flash-stock strong {
    color: var(--primary);
}

.flash-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.flash-current {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.flash-old {
    font-size: 0.85rem;
    color: var(--gray);
    text-decoration: line-through;
}

/* ============================================= */
/* কাস্টমার রিভিউ সেকশন */
/* ============================================= */
.reviews {
    padding: 70px 0;
    background: var(--white);
}

.reviews-subtitle {
    text-align: center;
    color: var(--gray);
    margin-top: -30px;
    margin-bottom: 40px;
    font-size: 1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.review-card {
    background: var(--light);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.review-card:hover {
    transform: translateY(-8px);
    background: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.review-quote {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 5rem;
    color: rgba(255, 107, 53, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-rating {
    color: #fdcb6e;
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), #ff8c42);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.review-author-info h4 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 2px;
}

.review-author-info span {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ============================================= */
/* নিউজলেটার সেকশন */
/* ============================================= */
.newsletter {
    padding: 60px 0;
    background: var(--light);
}

.newsletter-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-box::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: var(--white);
}

.newsletter-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 30px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 550px;
    margin: 0 auto 25px;
    flex-wrap: wrap;
}

.newsletter-input-wrap {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 5px 5px 5px 18px;
    flex-grow: 1;
    min-width: 250px;
    transition: all 0.3s;
}

.newsletter-input-wrap:focus-within {
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.newsletter-input-icon {
    color: var(--gray);
    margin-right: 10px;
}

.newsletter-input-wrap input {
    border: none;
    background: transparent;
    outline: none;
    padding: 12px 0;
    flex-grow: 1;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--secondary);
}

.newsletter-input-wrap input::placeholder {
    color: #b2bec3;
}

.newsletter-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 107, 53, 0.5);
}

.newsletter-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ==================== রেসপন্সিভ ==================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        margin: 0 auto;
    }

    .hero-visual {
        height: 400px;
    }

    .hero-main-circle {
        width: 260px;
        height: 260px;
    }

    .big-icon {
        font-size: 6rem;
    }

    .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 20px;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s;
        z-index: 999;
        justify-content: flex-start;
        gap: 5px;
    }

    .navbar.open {
        left: 0;
    }

    .navbar a {
        width: 100%;
        padding: 12px 15px;
    }

    .menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        justify-content: center;
        font-size: 0.8rem;
    }

    .top-bar-links {
        display: none;
    }

    .search-box {
        display: none;
    }

    .icon-btn {
        display: none;
    }

    .cart-info small {
        display: none;
    }

    .hero h2 {
        font-size: 2.3rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-visual {
        height: 320px;
    }

    .hero-main-circle {
        width: 200px;
        height: 200px;
    }

    .big-icon {
        font-size: 4.5rem;
    }

    .discount-badge {
        width: 70px;
        height: 70px;
        top: -10px;
        right: -15px;
    }

    .discount-badge span {
        font-size: 1.1rem;
    }

    .floating-card {
        padding: 8px 12px;
    }

    .fc-icon {
        width: 34px;
        height: 34px;
        font-size: 1.1rem;
    }

    .fc-info p {
        font-size: 0.75rem;
    }

    .fc-info span {
        font-size: 0.7rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 18px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item h3 {
        font-size: 1.2rem;
    }

    .brand-items {
        gap: 15px;
    }

    .brand-items span {
        font-size: 0.9rem;
    }

    .newsletter-box {
        padding: 50px 30px;
    }

    .flash-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 1.6rem;
    }

    .nav-wrapper {
        gap: 10px;
    }

    .logo-text h1 {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .logo-text small {
        display: none;
    }

    .cart-btn {
        padding: 8px 14px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }

    .product-image {
        height: 150px;
    }

    .product-title {
        font-size: 0.95rem;
    }

    .price-current {
        font-size: 1.1rem;
    }

    .flash-title {
        font-size: 1.6rem;
    }

    .countdown {
        gap: 8px;
    }

    .countdown-item {
        min-width: 60px;
        padding: 10px 12px;
    }

    .countdown-num {
        font-size: 1.3rem;
    }

    .flash-card {
        flex-direction: column;
        text-align: center;
    }

    .flash-image {
        width: 100%;
        height: 140px;
    }

    .newsletter-content h2 {
        font-size: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .hero {
        padding: 40px 0 0;
    }

    .hero h2 {
        font-size: 1.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .newsletter-box {
        padding: 40px 20px;
        border-radius: 15px;
    }

    .reviews-grid,
    .flash-grid {
        grid-template-columns: 1fr;
    }
}