/* ===== CSS Variables ===== */
:root {
    --primary-orange: #ff6b00;
    --dark-bg: #1a1a1a;
    --light-bg: #e8e8e8;
    --white: #ffffff;
    --black: #000000;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --font-heading: 'Impact', 'Arial Black', sans-serif;
    --font-body: 'Arial', sans-serif;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    flex-wrap: wrap;
}

.logo {
    flex-shrink: 0;
}

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

.logo-placeholder {
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
    letter-spacing: 2px;
}

.logo-placeholder span {
    color: var(--white);
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-btn {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cart-btn {
    position: relative;
}

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

.search-bar {
    display: none;
    padding: 15px 40px;
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.search-bar.active {
    display: flex;
    gap: 15px;
}

.search-bar input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
}

.close-search {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
}

/* ===== Scrolling Banner ===== */
.scroll-banner {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--primary-orange);
    overflow: hidden;
    display: flex;
    z-index: 999;
    border-top: 3px dashed var(--black);
    border-bottom: 3px dashed var(--black);
}

.banner-content {
    display: flex;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
    padding: 12px 0;
}

.banner-content span {
    font-weight: bold;
    color: var(--black);
    padding: 0 40px;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* ===== Hero Section ===== */
.hero {
    margin-top: 130px;
    padding: 60px 40px;
    background: var(--light-bg);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.white-text {
    color: var(--black);
}

.orange-text {
    color: var(--primary-orange);
}

.hero-subtitle {
    font-size: 0.9rem;
    color: var(--gray);
    max-width: 500px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.slider-slide {
    min-width: 100%;
    height: 100%;
    background: var(--white);
}

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

.slide-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    color: var(--gray);
    font-size: 1rem;
    border: 2px dashed var(--gray);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary-orange);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

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

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

.dot.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.dot:hover {
    background: var(--primary-orange);
}

/* ===== Latest Drops Section ===== */
.latest-drops {
    padding: 80px 40px;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 3px;
    color: var(--black);
}

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

.product-card {
    background: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    overflow: hidden;
    position: relative;
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.2s;
    color: #ccc;
    font-size: 16px;
}

.wishlist-btn:hover {
    background: #fff;
    color: #e74c3c;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.wishlist-btn.active {
    color: #e74c3c;
}

.wishlist-btn.active i {
    font-weight: 900;
}

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

.product-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--gray);
    font-size: 0.9rem;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--black);
}

.product-category {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-manager {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 5px 10px;
    border-radius: 25px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: var(--dark-bg);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

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

.qty-value {
    font-weight: bold;
    min-width: 25px;
    text-align: center;
}

.add-to-cart {
    flex: 1;
    padding: 12px 20px;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.add-to-cart:hover {
    background: #e55a00;
    transform: scale(1.02);
}

/* ===== Customize Preview Section ===== */
.customize-preview {
    padding: 80px 40px;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.customize-subtitle {
    text-align: center;
    color: var(--gray);
    max-width: 600px;
    margin: -30px auto 40px;
    line-height: 1.6;
}

.customize-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.customize-preview-box {
    background: repeating-conic-gradient(#e0e0e0 0% 25%, #fff 0% 50%) 50% / 20px 20px;
    border-radius: 10px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    min-height: 250px;
}

.customize-preview-box .sticker-shape {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.customize-preview-box .sticker-shape.circle {
    border-radius: 50%;
}

.customize-preview-box .custom-design-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customize-preview-box .sticker-text {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.customize-options-mini {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 300px;
}

.upload-area-mini {
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.upload-area-mini:hover {
    border-color: var(--primary-orange);
}

.upload-label-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.upload-label-mini i {
    font-size: 2rem;
    color: var(--primary-orange);
}

.upload-label-mini span {
    font-weight: bold;
    color: var(--black);
}

.size-options-mini {
    display: flex;
    gap: 10px;
}

.size-btn-mini {
    flex: 1;
    padding: 12px 8px;
    background: var(--light-bg);
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.size-btn-mini:hover,
.size-btn-mini.active {
    border-color: var(--primary-orange);
    background: rgba(255, 107, 0, 0.1);
}

.customize-full-btn {
    display: block;
    padding: 15px 30px;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.customize-full-btn:hover {
    background: #e55a00;
}

.customize-full-btn i {
    margin-left: 8px;
}

/* ===== Reviews Section ===== */
.reviews-section {
    padding: 80px 40px;
    background: var(--light-bg);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.reviews-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.reviews-track {
    display: flex;
    gap: 30px;
    animation: floatReviews 30s linear infinite;
    width: max-content;
}

@keyframes floatReviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    flex-shrink: 0;
    width: 350px;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
}

.review-name {
    font-weight: bold;
    color: var(--black);
}

.review-rating {
    color: #ffc107;
    font-size: 1rem;
    margin-top: 3px;
    white-space: nowrap;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.review-rating span {
    display: inline-block;
}

.review-text {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== About Section ===== */
.about-section {
    padding: 80px 40px;
    background: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
}

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

.founder-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
}

.founder-avatar-static {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--dark-bg);
    margin: 0 auto 20px;
    overflow: hidden;
}

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

.founder-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
}

.about-text[contenteditable="true"] {
    outline: none;
    border: 2px dashed transparent;
    padding: 10px;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.about-text[contenteditable="true"]:hover {
    border-color: #ddd;
}

.about-text[contenteditable="true"]:focus {
    border-color: var(--primary-orange);
    background: rgba(255, 107, 0, 0.02);
}

.founder-name {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--black);
}

.founder-quote {
    color: var(--gray);
    font-style: italic;
    line-height: 1.7;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-bg);
    padding: 50px 40px;
    text-align: center;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--white);
    font-style: italic;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-orange);
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ===== Cart Sidebar ===== */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: var(--white);
    z-index: 2001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--light-bg);
}

.cart-header h3 {
    font-size: 1.3rem;
    color: var(--black);
}

.close-cart {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--black);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-bg);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--black);
}

.cart-item-price {
    color: var(--primary-orange);
    font-weight: bold;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.cart-item-qty button {
    width: 25px;
    height: 25px;
    border: none;
    background: var(--dark-bg);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 0.9rem;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--light-bg);
}

.cart-delivery {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.cart-delivery-note {
    font-size: 0.75rem;
    color: #27ae60;
    margin: 0 0 12px 0;
    text-align: right;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--black);
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
}

.checkout-btn:hover {
    background: #e55a00;
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray);
}

.empty-cart i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--light-bg);
}

/* ===== Mobile Menu ===== */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .header-container {
        padding: 15px 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-subtitle {
        margin: 0 auto;
    }
    
    .hero-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 10px 16px;
        gap: 10px;
    }
    
    .nav-links {
        display: flex;
        gap: 6px;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0;
        margin: 0;
    }
    
    .nav-links::-webkit-scrollbar {
        height: 6px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }
    
    .nav-links::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 3px;
    }
    
    .nav-links a {
        flex: 0 0 auto;
        white-space: nowrap;
    }
    
    .nav-link {
        font-size: 0.7rem;
        padding: 5px 10px;
        background: rgba(255,255,255,0.05);
        border-radius: 20px;
    }
    
    .header-icons {
        gap: 6px;
        margin-left: auto;
    }
    
    .icon-btn {
        padding: 8px;
        font-size: 1rem;
    }
    
    .cart-count {
        font-size: 0.6rem;
        width: 15px;
        height: 15px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo-placeholder {
        font-size: 1.3rem;
    }
    
    .scroll-banner {
        top: 100px;
    }
    
    .banner-content span {
        font-size: 0.75rem;
        padding: 0 15px;
    }
    
    .hero {
        margin-top: 140px;
        padding: 30px 16px;
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .latest-drops,
    .reviews-section,
    .about-section {
        padding: 40px 16px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-card {
        border-radius: 12px;
    }
    
    .product-image {
        height: 140px;
    }
    
    .product-info {
        padding: 10px;
    }
    
    .product-name {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .product-category {
        font-size: 0.65rem;
    }
    
    .product-price {
        font-size: 0.85rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 6px;
    }
    
    .quantity-manager {
        width: 100%;
        justify-content: center;
    }
    
    .add-to-cart {
        width: 100%;
        font-size: 0.65rem;
        padding: 8px 10px;
    }
    
    .review-card {
        width: 260px;
        padding: 20px;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-card {
        text-align: center;
    }
    
    .founder-quote {
        font-size: 13px;
    }
    
    .category-filters {
        gap: 6px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 8px 12px;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .logo-placeholder {
        font-size: 1.2rem;
    }
    
    .nav-links {
        gap: 4px;
        padding-top: 6px;
    }
    
    .nav-link {
        font-size: 0.65rem;
        padding: 4px 8px;
    }
    
    .scroll-banner {
        top: 90px;
    }
    
    .banner-content span {
        font-size: 0.7rem;
        padding: 0 10px;
    }
    
    .hero {
        margin-top: 120px;
        padding: 20px 12px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .search-bar.active {
        padding: 8px 12px;
    }
    
    .hero-slider {
        max-width: 100%;
        height: 250px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .product-image {
        height: 120px;
    }
    
    .product-info {
        padding: 8px;
    }
    
    .product-name {
        font-size: 0.7rem;
    }
    
    .product-price {
        font-size: 0.8rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 4px;
    }
    
    .quantity-manager {
        width: 100%;
        justify-content: center;
    }
    
    .add-to-cart {
        width: 100%;
        font-size: 0.6rem;
        padding: 6px 8px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .latest-drops,
    .reviews-section,
    .about-section {
        padding: 30px 12px;
    }
    
    .customize-preview {
        padding: 30px 12px;
    }
    
    .about-section {
        padding: 30px 12px;
    }
}

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

.product-card {
    animation: fadeIn 0.5s 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; }

/* Pause animation on hover */
.reviews-track:hover {
    animation-play-state: paused;
}

/* ===== Account Prompt Overlay ===== */
.account-prompt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.account-prompt-overlay.active,
.account-prompt-overlay.active .account-prompt {
    opacity: 1;
    visibility: visible;
}

.account-prompt {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--white);
    border-radius: 20px;
    width: 90%;
    max-width: 420px;
    max-height: 85vh;
    z-index: 3001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    scale: 0.9;
}

.account-prompt.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    scale: 1;
}

.account-prompt-header {
    background: var(--dark-bg);
    color: var(--white);
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.account-prompt-header h3 {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.close-prompt {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.close-prompt:hover {
    background: rgba(255, 255, 255, 0.15);
}

.account-prompt-content {
    padding: 28px 24px;
    overflow-y: auto;
    flex: 1;
}

.account-prompt-content p {
    color: var(--gray);
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.5;
}

.account-prompt-content h4 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.account-prompt-content input {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 0.95rem;
    margin-bottom: 14px;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.account-prompt-content input:focus {
    border-color: var(--primary-orange);
}

.account-prompt-content .popup-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.account-prompt-content .prompt-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.account-prompt-content .prompt-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.account-prompt-content .signup-btn {
    background: var(--primary-orange);
    color: var(--white);
}

.account-prompt-content .signup-btn:hover {
    background: #e55a00;
}

.account-prompt-content .login-btn {
    background: var(--dark-bg);
    color: var(--white);
}

.account-prompt-content .login-btn:hover {
    background: #333;
}

.account-prompt-content .skip-btn {
    background: var(--light-bg);
    color: var(--gray);
}

.account-prompt-content .skip-btn:hover {
    background: #e0e0e0;
}

/* ===== Profile Popup ===== */
.profile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.profile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.profile-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--white);
    border-radius: 20px;
    width: 90%;
    max-width: 420px;
    max-height: 85vh;
    z-index: 3001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.profile-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.popup-header {
    background: var(--dark-bg);
    color: var(--white);
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.popup-header h3 {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.close-popup {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.close-popup:hover {
    background: rgba(255, 255, 255, 0.15);
}

.popup-content {
    padding: 28px 24px;
    overflow-y: auto;
    flex: 1;
}

.popup-content p {
    color: var(--gray);
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.5;
}

.popup-content h4 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.popup-content input {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 0.95rem;
    margin-bottom: 14px;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.popup-content input:focus {
    border-color: var(--primary-orange);
}

.popup-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.signup-btn {
    background: var(--primary-orange);
    color: var(--white);
}

.signup-btn:hover {
    background: #e55a00;
}

.login-btn {
    background: var(--dark-bg);
    color: var(--white);
}

.login-btn:hover {
    background: #333;
}

.submit-btn {
    background: var(--primary-orange);
    color: var(--white);
    margin-top: 10px;
}

.submit-btn:hover {
    background: #e55a00;
}

.logout-btn {
    background: none;
    color: #e74c3c;
    border: 2px solid #e74c3c;
    margin-top: 8px;
}

.logout-btn:hover {
    background: #e74c3c;
    color: white;
}

.switch-form {
    text-align: center;
    margin-top: 16px;
    font-size: 0.85rem;
}

.switch-form a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

/* Profile Header */
.profile-header {
    text-align: center;
    padding: 8px 0 20px;
}

.profile-avatar {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--primary-orange), #ff9a44);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-avatar i {
    font-size: 2rem;
    color: white;
}

.profile-header h4 {
    margin: 0 0 4px;
    font-size: 1.15rem;
    color: var(--black);
}

.profile-header p {
    color: var(--gray);
    font-size: 0.85rem;
    margin: 0;
}

/* Profile Tabs */
.profile-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 20px;
}

.profile-tab {
    flex: 1;
    padding: 10px 0;
    border: none;
    background: none;
    font-size: 0.85rem;
    font-weight: 600;
    color: #aaa;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

.profile-tab:hover {
    color: var(--primary-orange);
}

.profile-tab.active {
    color: var(--primary-orange);
    border-bottom-color: var(--primary-orange);
}

/* Profile Tab Content */
.profile-tab-content {
    margin-bottom: 16px;
    min-height: 80px;
}

.profile-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.9rem;
}

.profile-detail span:first-child {
    color: #999;
    font-size: 0.85rem;
}

.profile-detail span:last-child {
    font-weight: 600;
    color: #333;
    text-align: right;
    max-width: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 20px;
    color: #ccc;
}

.profile-empty i {
    font-size: 2.5rem;
    opacity: 0.6;
}

.profile-empty p {
    margin: 0;
    font-size: 0.9rem;
    color: #bbb;
}

/* Wishlist Grid in Profile */
.wishlist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.wishlist-item {
    position: relative;
    background: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
}

.wishlist-item img {
    width: 100%;
    height: 90px;
    object-fit: cover;
}

.wishlist-item-info {
    padding: 8px;
}

.wishlist-item-name {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wishlist-item-price {
    font-size: 0.8rem;
    color: var(--primary-orange);
    font-weight: 700;
}

.wishlist-remove-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.wishlist-remove-btn:hover {
    background: #e74c3c;
}

/* ===== Orders List in Profile ===== */
.orders-list {
    max-height: 300px;
    overflow-y: auto;
}

.order-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #eee;
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.order-card-header code {
    font-size: 0.75rem;
    background: #e8e8e8;
    padding: 2px 6px;
    border-radius: 4px;
}

.order-status {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: capitalize;
}

.order-pending { background: #fff3cd; color: #856404; }
.order-processing { background: #cce5ff; color: #004085; }
.order-delivered { background: #d4edda; color: #155724; }

.order-card-items {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 8px;
}

.order-card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.order-date { color: #888; }
.order-total { font-weight: 700; color: var(--primary-orange); }

.order-note {
    font-size: 0.75rem;
    color: #888;
    margin-top: 6px;
    font-style: italic;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--dark-bg);
    color: #ccc;
    padding: 50px 20px 0;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand a {
    text-decoration: none;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    display: block;
    margin-bottom: 12px;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: inline-block;
}

.footer-logo-text span {
    color: var(--primary-orange);
}

.footer-tagline {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 1.05rem;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-socials a:hover {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.footer-col a {
    display: block;
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 9px;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding: 18px 0;
    font-size: 0.8rem;
    color: #555;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-brand {
        max-width: 100%;
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-links {
        gap: 40px;
    }
}

/* ===== Product Detail Modal ===== */
.product-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.product-modal {
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 400px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

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

.modal-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background: #f5f5f5;
}

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

.modal-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-orange);
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.modal-wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.2s;
    color: #bbb;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.modal-wishlist-btn:hover {
    background: #fff;
    color: #e74c3c;
    transform: scale(1.1);
}

.modal-wishlist-btn.active {
    color: #e74c3c;
}

.modal-wishlist-btn.active i {
    font-weight: 900;
}

.modal-details {
    padding: 20px 24px 24px;
}

.modal-product-name {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #222;
}

.modal-product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 6px;
}

.modal-product-size {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.poster-size-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.poster-size-btn {
    flex: 1;
    padding: 10px 16px;
    border: 2px solid #ddd;
    background: var(--white);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--black);
}

.poster-size-btn:hover {
    border-color: var(--primary-orange);
}

.poster-size-btn.active {
    border-color: var(--primary-orange);
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-orange);
}

/* ===== Poster Size Confirm Popup ===== */
.poster-confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.2s ease;
}

.poster-confirm-popup {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    max-width: 320px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.poster-confirm-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 22px;
    color: #999;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.poster-confirm-close:hover {
    background: rgba(0, 0, 0, 0.08);
    color: #333;
}

.poster-confirm-popup h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--black);
}

.poster-confirm-name {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.poster-confirm-options {
    display: flex;
    gap: 12px;
}

.poster-confirm-btn {
    flex: 1;
    padding: 18px 10px;
    border: 2px solid #ddd;
    background: var(--white);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.poster-confirm-btn:hover {
    border-color: var(--primary-orange);
    background: rgba(255, 107, 0, 0.05);
}

.poster-confirm-btn:active {
    border-color: var(--primary-orange);
    background: rgba(255, 107, 0, 0.1);
}

.poster-confirm-size {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 4px;
}

.poster-confirm-price {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-orange);
}

.poster-confirm-qty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 20px 0 16px;
}

.poster-confirm-qty-btn {
    width: 36px;
    height: 36px;
    border: 2px solid #ddd;
    background: var(--white);
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.poster-confirm-qty-btn:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.poster-confirm-qty span {
    font-size: 1.2rem;
    font-weight: bold;
    min-width: 24px;
    text-align: center;
}

.poster-confirm-add {
    width: 100%;
    padding: 14px;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s ease;
}

.poster-confirm-add:hover {
    background: #e55a00;
}

.modal-product-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Poster Size Row in Modal */
.poster-size-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.poster-size-btn {
    flex: 1;
    padding: 10px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.poster-size-btn:hover {
    border-color: var(--primary-orange);
}

.poster-size-btn.active {
    border-color: var(--primary-orange);
    background: rgba(255, 107, 0, 0.08);
    color: var(--primary-orange);
}

.poster-qty-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}

.poster-qty-btn {
    width: 34px;
    height: 34px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.poster-qty-btn:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.poster-qty-row span {
    font-size: 1.1rem;
    font-weight: bold;
    min-width: 24px;
    text-align: center;
}

.poster-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: var(--light-bg);
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 14px;
}

.poster-total-row span:last-child {
    color: var(--primary-orange);
    font-size: 1.1rem;
}

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

.modal-add-cart-btn {
    flex: 1;
    background: var(--primary-orange);
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.modal-add-cart-btn:hover {
    background: #e65c00;
}

.modal-add-cart-btn:active {
    transform: scale(0.97);
}

.modal-close-btn-outline {
    flex: 1;
    background: #fff;
    color: #555;
    border: 2px solid #ddd;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.modal-close-btn-outline:hover {
    border-color: #999;
    color: #222;
}

/* ===== Poster Customization Panel ===== */
.poster-panel {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.poster-upload-area {
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: border-color 0.3s;
    margin-bottom: 12px;
}

.poster-upload-area:hover {
    border-color: var(--primary-orange);
}

.poster-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.poster-upload-label i {
    font-size: 1.8rem;
    color: var(--primary-orange);
}

.poster-upload-label span {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.poster-upload-label small {
    color: #999;
    font-size: 12px;
}

.poster-preview {
    position: relative;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.poster-preview img {
    width: 100%;
    border-radius: 8px;
    border: 2px solid #ddd;
}

.poster-remove-img {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 26px;
    height: 26px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.poster-remove-img:hover {
    background: #c0392b;
}

.poster-a4-preview {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}

.poster-a4-sheet {
    width: 220px;
    height: 310px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.poster-a4-sheet img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.poster-a4-placeholder {
    color: #bbb;
    font-size: 13px;
}

.poster-size-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.poster-size-option {
    flex: 1;
    padding: 10px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.poster-size-option:hover {
    border-color: var(--primary-orange);
}

.poster-size-option.active {
    border-color: var(--primary-orange);
    background: rgba(255, 107, 0, 0.08);
    color: var(--primary-orange);
}

.poster-qty-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}

.poster-qty-btn {
    width: 34px;
    height: 34px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.poster-qty-btn:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.poster-qty-row span {
    font-size: 1.1rem;
    font-weight: bold;
    min-width: 24px;
    text-align: center;
}

.poster-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: var(--light-bg);
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 14px;
}

.poster-total-row span:last-child {
    color: var(--primary-orange);
    font-size: 1.1rem;
}

/* Founder quotes */
.founder-quote {
    font-size: 14px;
    color: #666;
    font-style: italic;
    line-height: 1.6;
    margin-top: 8px;
    padding: 0 10px;
}

/* ===== Mobile Modal Styles ===== */
@media (max-width: 480px) {
    .product-modal {
        width: 95%;
        max-height: 90vh;
        margin: 10px;
    }
    
    .modal-details {
        padding: 15px 16px 20px;
    }
    
    .modal-product-name {
        font-size: 16px;
    }
    
    .modal-product-price {
        font-size: 18px;
    }
    
    .modal-product-desc {
        font-size: 13px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-add-cart-btn,
    .modal-close-btn-outline {
        padding: 12px;
    }
    
    .interest-popup {
        width: 95%;
        padding: 20px;
    }
    
    .interest-buttons {
        grid-template-columns: 1fr;
    }
    
    .interest-btn.see-all {
        grid-column: span 1;
    }
    
    /* Cart Sidebar Mobile */
    .cart-sidebar {
        width: 100%;
        max-width: 100%;
        right: -100%;
    }
    
    .cart-header {
        padding: 15px;
    }
    
    .cart-header h3 {
        font-size: 1.1rem;
    }
    
    .close-cart {
        font-size: 1.3rem;
        padding: 5px;
    }
    
    .cart-items {
        padding: 12px;
    }
    
    .cart-item {
        gap: 10px;
        padding: 12px 0;
    }
    
    .cart-item-image {
        width: 50px;
        height: 50px;
    }
    
    .cart-item-name {
        font-size: 0.85rem;
    }
    
    .cart-item-price {
        font-size: 0.85rem;
    }
    
    .cart-item-qty {
        gap: 8px;
        margin-top: 6px;
    }
    
    .cart-item-qty button {
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
    }
    
    .cart-item-qty span {
        font-size: 0.85rem;
    }
    
    .cart-item-remove {
        font-size: 0.8rem;
    }
}
