* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --border-color: #e0e0e0;
    --text-color: #333;
    --white: #fff;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
}

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

/* ============ ANNOUNCEMENT BAR ============ */
.announcement-bar {
    background: #1a1a1a;
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.announcement-bar p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.announcement-bar i {
    color: #ff6b35;
}

/* ============ TOP HEADER ============ */
.top-header {
    background-color: #fff;
    color: var(--text-color);
    padding: 10px 0;
    font-size: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    display: flex;
    gap: 30px;
}

.top-link {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
}

.top-link:hover {
    color: #ff6b35;
}

.top-right {
    display: flex;
    align-items: center;
}

.help-text {
    color: #666;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
}

.help-text i {
    color: #ff6b35;
    font-size: 12px;
}

/* ============ MAIN HEADER ============ */
.main-header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #f0f0f0;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 40px;
}

/* Logo */
.logo {
    flex-shrink: 0;
}

.logo h1 {
    font-family: 'Dosis', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1;
}

.logo h1 span {
    color: #ff6b35;
    font-weight: 700;
}

/* Search Container */
.search-container {
    flex: 1;
    max-width: 450px;
    display: flex;
    align-items: center;
    background: #f8f8f8;
    border-radius: 50px;
    padding: 12px 20px;
    transition: all 0.2s ease;
    border: 1.5px solid #f0f0f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.search-container:focus-within {
    border-color: #ddd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.search-input::placeholder {
    color: #aaa;
    font-weight: 400;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 0 8px;
    color: #999;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
}

.search-btn:hover {
    color: #ff6b35;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.account-section {
    display: flex;
    align-items: center;
}

.account-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s ease;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.account-link:hover {
    color: #ff6b35;
}

.account-icon {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Price Display */
.price-display {
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-weight: 700;
    color: #ff6b35;
    font-size: 17px;
    font-family: 'Dosis', sans-serif;
    letter-spacing: -0.3px;
}

.currency {
    font-size: 15px;
    font-weight: 600;
}

/* Cart Section */
.cart-section {
    position: relative;
}

.cart-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.2s ease;
    padding: 8px;
    border-radius: 6px;
}

.cart-link:hover {
    color: #ff6b35;
    background: #f8f8f8;
}

.cart-icon {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff6b35;
    color: var(--white);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Dosis', sans-serif;
}

/* ============ HEADER BOTTOM (Categories & Menu) ============ */
.header-bottom {
    display: flex;
    align-items: center;
    padding: 0;
    border-top: 1px solid #f0f0f0;
    gap: 0;
    background: #fff;
}

/* Categories Menu */
.categories-menu {
    display: flex;
    align-items: center;
    background: #3ba1cb;
    padding: 0;
    border-radius: 0;
}

.categories-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    color: var(--white);
    font-family: 'Dosis', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.categories-icon {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.categories-label {
    color: var(--white);
    font-weight: 600;
}

.categories-header .menu-arrow {
    opacity: 0.8;
    transition: transform 0.2s ease;
}

.categories-menu:hover .categories-header .menu-arrow {
    transform: rotate(180deg);
}

.categories-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0 !important;
}

.categories-menu:hover .categories-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Main Menu */
.main-menu {
    margin-left: auto;
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.menu-list {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
    height: 100%;
    align-items: center;
}

.menu-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-family: 'Dosis', sans-serif;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    border-bottom: 3px solid transparent;
    position: relative;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 20px;
    right: 20px;
    height: 3px;
    background: #ff6b35;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.menu-link:hover {
    color: #ff6b35;
}

.menu-link:hover::after {
    transform: scaleX(1);
}

.menu-arrow {
    font-size: 10px;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.menu-link:hover .menu-arrow {
    opacity: 1;
}

/* Submenu */
.submenu {
    position: absolute;
    top: 100%;
    left: 20px;
    background-color: var(--white);
    min-width: 200px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 200;
    margin-top: 6px;
    overflow: visible;
}

.menu-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Submenu Item with Nested Menu */
.submenu-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f5f5f5;
}

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

.submenu-item .submenu-link {
    flex: 1;
    padding: 12px 16px;
}

.submenu-item-arrow {
    font-size: 11px;
    color: #ccc;
    padding: 0 12px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.submenu-item:hover .submenu-item-arrow {
    color: var(--primary-color);
}

.submenu-item:hover .submenu-nested {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Nested Submenu (appears to the right) */
.submenu-nested {
    position: absolute;
    top: 0;
    left: 100%;
    background-color: var(--white);
    min-width: 200px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-8px);
    transition: all 0.2s ease;
    z-index: 300;
    margin-left: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.submenu-link {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.15s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

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

.submenu-link:hover {
    color: var(--primary-color);
    background: #f9f9f9;
    padding-left: 20px;
}

/* ============ CAROUSEL SECTION ============ */

.carousel-section {
    width: 100%;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding: 0;
}

.carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 40px;
}

.carousel-slides {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    min-height: 450px;
}

.carousel-slide-reverse.active {
    flex-direction: row-reverse;
}

.carousel-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    max-width: 520px;
    animation: slideInFromLeft 0.8s ease-out;
}


.carousel-slide-reverse .carousel-image {
    animation: slideInFromLeft 0.8s ease-out;
}

.carousel-slide-reverse .carousel-content {
    animation: slideInFromRight 0.8s ease-out !important;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(300px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Carousel Badge */
.carousel-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b35, #ff8555);
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    font-family: 'Dosis', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    width: fit-content;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    animation: slideInFromLeft 0.8s ease-out 0.1s both;
}

.carousel-badge i {
    font-size: 14px;
}

/* Carousel Offer Tag */
.carousel-offer {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 133, 85, 0.08));
    border-left: 5px solid #ff6b35;
    padding: 16px 18px;
    border-radius: 10px;
    margin-bottom: 32px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
    animation: slideInFromLeft 0.8s ease-out 0.2s both;
}

.carousel-offer-title {
    font-family: 'Dosis', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #ff6b35;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.carousel-offer-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    font-weight: 500;
}

/* Carousel Highlight */
.carousel-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 133, 85, 0.06));
    border-radius: 10px;
    padding: 16px 18px;
    margin-top: 20px;
    margin-bottom: 28px;
    border-left: 5px solid #ff6b35;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.08);
    animation: slideInFromLeft 0.8s ease-out 0.3s both;
}

.carousel-highlight-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1.5;
}

.carousel-highlight-text strong {
    color: #ff6b35;
}

.carousel-content h2 {
    font-family: 'Dosis', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
    animation: slideInFromLeft 0.8s ease-out 0.2s both;
}

.carousel-content h2 span {
    color: #ff6b35;
    font-weight: 700;
}

.carousel-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.3px;
    animation: slideInFromLeft 0.8s ease-out 0.3s both;
}

.carousel-btn {
    align-self: flex-start;
    background: linear-gradient(135deg, #ff6b35, #ff8555);
    color: var(--white);
    border: none;
    padding: 18px 52px;
    font-family: 'Dosis', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    animation: slideInFromLeft 0.8s ease-out 0.4s both;
}

.carousel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
}

.carousel-btn:hover::before {
    left: 100%;
}

.carousel-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.carousel-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    animation: slideInFromRight 0.8s ease-out;
    max-width: 520px;
    margin-left: auto;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(300px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-img {
    width: 100%;
    height: 520px;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
}

.carousel-slide.active .carousel-img {
    transform: scale(1.03);
}

/* Carousel Dots Navigation */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
    padding: 20px 0;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background-color: #ff6b35;
    transform: scale(1.2);
}

.dot.active {
    background-color: #ff6b35;
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* ============ CATEGORIES LIST SECTION ============ */
.categories-list-section {
    background-color: var(--white);
    padding: 80px 0;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
}

.section-title {
    font-family: 'Dosis', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 50px;
}

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

.category-card {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

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

.category-image {
    flex: 0 0 120px;
    height: 120px;
    overflow: hidden;
    background-color: var(--light-color);
}

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

.category-card:hover .category-img {
    transform: scale(1.1);
}

.category-info {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-info h3 {
    font-family: 'Dosis', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
    margin: 0;
}

.product-count {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #999;
    margin: 8px 0 0 0;
}

/* ============ PRODUCTS SECTION ============ */
.products-section {
    background-color: var(--white);
    padding: 80px 0;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
}

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

.product-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

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

.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--light-color);
}

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

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

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Dosis', sans-serif;
}

.product-info {
    padding: 20px;
}

.product-info h4 {
    font-family: 'Dosis', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 6px;
}

.product-restaurant {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: 'Dosis', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.product-rating {
    font-size: 12px;
    color: #FFB800;
    display: flex;
    align-items: center;
    gap: 4px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(135deg, #ff6b35, #ff8555);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Dosis', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #ff5520, #ff7540);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.add-to-cart-btn i {
    font-size: 16px;
}

/* ============ BANNERS SECTION ============ */
.banners-section {
    background-color: var(--white);
    padding: 60px 0;
    margin: 40px 0;
}

.banners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.offer-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    padding: 40px;
    color: var(--white);
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.left-banner {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.right-banner {
    background: linear-gradient(135deg, #0491bf, #036a8f);
}

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

.banner-content {
    flex: 1;
    z-index: 2;
}

.banner-content h3 {
    font-family: 'Dosis', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.banner-content p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.banner-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid var(--white);
    padding: 10px 25px;
    border-radius: 6px;
    font-family: 'Dosis', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.banner-image {
    flex: 1;
    text-align: right;
    font-size: 100px;
    opacity: 0.2;
    z-index: 1;
}

/* ============ NEWSLETTER SECTION ============ */
.newsletter-section {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: var(--white);
    padding: 80px 0;
    margin: 40px 0;
    border-radius: 12px;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-family: 'Dosis', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.newsletter-form button {
    padding: 14px 30px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 6px;
    font-family: 'Dosis', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* ============ CONTACT SECTION ============ */
.contact-section {
    background-color: var(--white);
    padding: 80px 0;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.contact-card {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.contact-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-card h3 {
    font-family: 'Dosis', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contact-detail {
    font-family: 'Dosis', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-subtext {
    font-size: 12px;
    color: #999;
}

/* ============ FOOTER ============ */
.footer {
    background-color: var(--dark-color);
    color: #ddd;
    margin-top: 80px;
}

.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    font-family: 'Dosis', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-column h4 {
    font-family: 'Dosis', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #ddd;
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* App Links */
.app-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.app-button:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Footer Bottom */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 13px;
    color: #999;
}

.footer-copyright p {
    margin: 0;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-title {
    font-size: 12px;
    color: #999;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    gap: 12px;
    font-size: 20px;
    color: #ddd;
}

.payment-icons i {
    transition: var(--transition);
}

.payment-icons i:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 1024px) {
    .header-top {
        gap: 15px;
    }

    .search-container {
        max-width: 300px;
    }

    .header-actions {
        gap: 15px;
    }

    .account-text {
        display: none;
    }
}

@media (max-width: 768px) {
    .carousel-slide.active {
        flex-direction: column;
        gap: 30px;
    }

    .carousel-content h2 {
        font-size: 32px;
    }

    .carousel-content p {
        font-size: 14px;
    }

    .image-placeholder {
        height: 250px;
        font-size: 80px;
    }

    .carousel-wrapper {
        padding: 40px 0;
    }

    .top-header .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-left {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-top {
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .logo h1 {
        font-size: 24px;
    }

    .search-container {
        max-width: 100%;
        order: 3;
        flex-basis: 100%;
    }

    .header-actions {
        gap: 12px;
    }

    .search-container {
        max-width: 100%;
    }

    .price-display {
        display: none;
    }

    .account-link {
        padding: 6px 8px;
    }

    .account-icon {
        font-size: 16px;
    }

    .menu-list {
        flex-wrap: wrap;
    }

    .menu-link {
        padding: 12px 12px;
        font-size: 13px;
    }

    .categories-text {
        display: none;
    }

    .categories-toggle {
        padding: 10px 12px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .product-image {
        height: 200px;
    }

    .banners-grid {
        grid-template-columns: 1fr;
    }

    .banner-content h3 {
        font-size: 24px;
    }

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

    .newsletter-content h2 {
        font-size: 28px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .category-image {
        flex: 0 0 100px;
        height: 100px;
    }

    .image-placeholder-category {
        font-size: 40px;
    }

    .category-info {
        padding: 15px;
    }

    .category-info h3 {
        font-size: 16px;
    }

    .product-count {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .payment-methods {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    .app-links {
        flex-direction: row;
    }

    .app-button {
        flex: 1;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .announcement-bar p {
        font-size: 11px;
    }

    .logo h1 {
        font-size: 20px;
    }

    .header-top {
        gap: 8px;
    }

    .header-actions {
        gap: 8px;
    }

    .menu-link {
        padding: 10px 8px;
        font-size: 12px;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    .search-input {
        font-size: 12px;
    }

    .subcategory-menu {
        left: -100%;
        top: 0;
    }
}

/* ============ RESPONSIVE DESIGN ============ */

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Header */
    .header-top {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .search-container {
        width: 100%;
    }

    .header-actions {
        width: 100%;
        justify-content: space-around;
    }

    /* Carousel */
    .carousel-wrapper {
        padding: 30px 20px;
    }

    .carousel-slide.active {
        gap: 30px;
        min-height: 350px;
    }

    .carousel-content h2 {
        font-size: 36px;
    }

    .carousel-content p {
        font-size: 14px;
    }

    .carousel-img {
        height: 350px;
    }

    /* Categories Grid */
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    /* Section Title */
    .section-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    /* Add to Cart Button */
    .add-to-cart-btn {
        padding: 10px 12px;
        font-size: 12px;
    }
}

/* Small Phones (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    /* Top Header */
    .top-left,
    .top-right {
        flex-direction: column;
        gap: 8px;
    }

    .top-link,
    .help-text {
        font-size: 11px;
    }

    /* Header */
    .header-top {
        flex-direction: column;
        gap: 12px;
    }

    .logo h1 {
        font-size: 18px;
    }

    .search-container {
        width: 100%;
    }

    .search-input {
        font-size: 12px;
        padding: 10px;
    }

    .search-btn {
        padding: 10px 12px;
    }

    .header-actions {
        gap: 15px;
    }

    .account-text,
    .cart-count {
        display: none;
    }

    /* Menu */
    .menu-list {
        flex-wrap: wrap;
        gap: 8px;
    }

    .menu-link {
        font-size: 12px;
        padding: 8px 10px;
    }

    /* Carousel */
    .carousel-wrapper {
        padding: 20px;
    }

    .carousel-slide.active {
        flex-direction: column;
        gap: 20px;
        min-height: auto;
        align-items: center;
    }

    .carousel-slide-reverse.active {
        flex-direction: column-reverse;
    }

    .carousel-content {
        max-width: 100%;
        text-align: center;
    }

    .carousel-content h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .carousel-content p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .carousel-badge {
        font-size: 10px;
        padding: 8px 12px;
        margin-bottom: 12px;
    }

    .carousel-highlight,
    .carousel-offer {
        padding: 12px 14px;
        font-size: 12px;
        margin-bottom: 16px;
    }

    .carousel-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .carousel-img {
        width: 100%;
        height: 280px;
    }

    .carousel-dots {
        margin-top: 25px;
        gap: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    /* Categories Section */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-card {
        padding: 10px;
    }

    .category-info h3 {
        font-size: 13px;
    }

    .product-count {
        font-size: 11px;
    }

    /* Products Section */
    .products-section {
        padding: 30px 0;
        margin: 20px 0;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-card {
        padding: 12px;
    }

    .product-image {
        height: 180px;
    }

    .product-badge {
        font-size: 11px;
        padding: 6px 10px;
        top: 8px;
        right: 8px;
    }

    .product-info h4 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .product-restaurant {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .product-price {
        font-size: 14px;
    }

    .product-rating {
        font-size: 11px;
    }

    .add-to-cart-btn {
        padding: 9px 12px;
        font-size: 12px;
        gap: 6px;
        margin-top: 8px;
    }

    .add-to-cart-btn i {
        font-size: 14px;
    }

    /* Banners */
    .banners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .offer-banner {
        padding: 25px 20px;
    }

    .banner-content h3 {
        font-size: 18px;
    }

    .banner-content p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .banner-btn {
        padding: 10px 18px;
        font-size: 12px;
    }

    /* Newsletter */
    .newsletter-section {
        padding: 40px 0;
        margin: 30px 0;
    }

    .newsletter-content h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .newsletter-content p {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input {
        font-size: 13px;
        padding: 12px;
    }

    .newsletter-form button {
        padding: 12px;
        font-size: 13px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-column h3 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .footer-column ul li {
        margin-bottom: 6px;
    }

    .footer-column a {
        font-size: 12px;
    }

    .social-links {
        gap: 12px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .app-button {
        padding: 10px 12px;
        font-size: 12px;
    }

    .payment-icons {
        gap: 8px;
        font-size: 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-copyright p {
        font-size: 12px;
    }

    .payment-title {
        font-size: 12px;
    }
}

/* Medium Phones (600px to 768px) */
@media (max-width: 768px) and (min-width: 481px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .carousel-content h2 {
        font-size: 32px;
    }
}

/* Large Screens (1440px and above) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

    .carousel-wrapper {
        padding: 60px;
    }

    .carousel-slide.active {
        gap: 100px;
        min-height: 500px;
    }

    .carousel-img {
        height: 550px;
    }
}

/* ============ PRODUCT DETAIL PAGE STYLES ============ */

.breadcrumb {
    background: #f9f9f9;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    font-size: 13px;
}

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

.breadcrumb span {
    color: #999;
}

.product-detail-section {
    padding: 60px 0;
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Product Images */
.product-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 20px;
}

.main-image {
    position: relative;
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.main-image img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.main-image:hover img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35, #ff8555);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.thumbnail-images {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.thumbnail {
    width: 110px;
    height: 110px;
    border: 3px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    object-fit: contain;
    padding: 8px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    flex-shrink: 0;
}

.thumbnail:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

.thumbnail.active {
    border-color: var(--primary-color);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.25);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 133, 85, 0.05));
}

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

.detail-header h1 {
    font-family: 'Dosis', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.seller-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.seller-name {
    font-size: 14px;
    color: #666;
}

.seller-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Ratings */
.product-ratings {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

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

.stars {
    display: flex;
    gap: 2px;
    font-size: 14px;
    color: #FFB800;
}

.rating-value {
    font-family: 'Dosis', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
}

.review-count {
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
}

.rating-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
}

.stat span:first-child {
    min-width: 30px;
}

.stat-bar {
    flex: 1;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(135deg, #ff6b35, #ff8555);
}

.stat-percent {
    min-width: 35px;
    text-align: right;
    color: #666;
}

/* Pricing */
.pricing-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.price-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.original-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.current-price {
    font-family: 'Dosis', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.discount-badge {
    padding: 6px 12px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

/* Specs */
.detail-specs {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spec {
    display: flex;
    gap: 16px;
    font-size: 14px;
}

.spec-label {
    font-weight: 600;
    color: #666;
    min-width: 100px;
}

.spec-value {
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.spec-value.in-stock {
    color: #27ae60;
}

.spec-value i {
    font-size: 16px;
}

/* Purchase Section */
.purchase-section {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 32px;
}

.quantity-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quantity-selector label {
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

.qty-control {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--white);
    color: #666;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
}

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

.qty-input {
    width: 50px;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.add-to-cart-btn-large {
    flex: 1;
    padding: 14px 32px;
    background: linear-gradient(135deg, #ff6b35, #ff8555);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Dosis', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart-btn-large:hover {
    background: linear-gradient(135deg, #ff5520, #ff7540);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.wishlist-btn {
    width: 48px;
    height: 48px;
    border: 2px solid var(--border-color);
    background: var(--white);
    color: #999;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Description */
.description-section {
    margin-top: 32px;
}

.description-section h3 {
    font-family: 'Dosis', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.description-section p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Reviews Section */
.reviews-section {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    margin-bottom: 60px;
}

.reviews-section h2 {
    font-family: 'Dosis', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.review-item {
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #f9f9f9;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.reviewer-name {
    font-weight: 600;
    color: var(--dark-color);
}

.review-date {
    font-size: 13px;
    color: #999;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.review-rating .stars {
    font-size: 13px;
}

.review-rating span:last-child {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-color);
}

.review-text {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

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

.helpful-btn {
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    background: var(--white);
    border-radius: 4px;
    font-size: 12px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.helpful-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Related Products */
.related-products {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

.related-products h2 {
    font-family: 'Dosis', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.related-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.related-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    padding: 15px;
    background: #f9f9f9;
}

.related-card h4 {
    font-family: 'Dosis', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 16px 0;
    color: var(--dark-color);
}

.related-card .price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    padding: 8px 16px;
}

.view-btn {
    width: calc(100% - 32px);
    padding: 10px 16px;
    margin: 0 16px 16px;
    background: linear-gradient(135deg, #ff6b35, #ff8555);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: linear-gradient(135deg, #ff5520, #ff7540);
}

/* Responsive */
@media (max-width: 768px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .main-image {
        height: 350px;
    }

    .detail-header h1 {
        font-size: 24px;
    }

    .purchase-section {
        flex-direction: column;
    }

    .add-to-cart-btn-large {
        width: 100%;
    }

    .wishlist-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .product-detail-wrapper {
        gap: 20px;
    }

    .main-image {
        height: 250px;
    }

    .detail-header h1 {
        font-size: 20px;
    }

    .current-price {
        font-size: 24px;
    }

    .thumbnail-images {
        gap: 8px;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}
