/* ===== CART SIDEBAR ===== */
#cartSidebar {
    position: fixed !important;
    top: 0 !important;
    right: -400px !important;
    width: 400px !important;
    height: 100vh !important;
    background: white !important;
    z-index: 9999 !important;
    transition: right 0.3s ease !important;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1) !important;
    display: flex;
    flex-direction: column;
}

#cartSidebar.active {
    right: 0 !important;
}

#cartOverlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0,0,0,0.5) !important;
    z-index: 9998 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
}

#cartOverlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.close-cart:hover {
    color: #333;
}

.cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart-message {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.empty-cart-message p {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.empty-cart-message small {
    font-size: 14px;
    color: #999;
}

.cart-item-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item-mini:last-child {
    border-bottom: none;
}

.item-info {
    flex: 1;
    display: flex;
    align-items: center;
}

.item-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.item-price {
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
}

.item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.item-controls .qty-btn {
    background: #f5f5f5;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-controls .qty-btn:hover {
    background: #e0e0e0;
}

.qty {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    min-width: 20px;
    text-align: center;
}

.item-controls .remove-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
    padding: 2px;
    transition: color 0.3s ease;
}

.item-controls .remove-btn:hover {
    color: #e74c3c;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

.cart-total {
    margin-bottom: 15px;
    text-align: center;
    font-size: 16px;
    color: #333;
}

.cart-total strong {
    font-weight: 600;
}

.cart-footer .checkout-btn {
    width: 100%;
    background: #333;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cart-footer .checkout-btn:hover {
    background: #1a1a1a;
}

.continue-shopping-btn {
    width: 100%;
    background: white;
    color: #333;
    border: 1px solid #e0e0e0;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.continue-shopping-btn:hover {
    border-color: #333;
    background: #f8f9fa;
    transform: translateY(-1px);
}

.continue-shopping-btn::before {
    content: "←";
    font-size: 16px;
    font-weight: bold;
}

.empty-cart-continue {
    margin-top: 20px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border: none !important;
    font-weight: 600 !important;
}

.empty-cart-continue:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4) !important;
}

.empty-cart-continue::before {
    content: "🛍️" !important;
    font-size: 16px !important;
}

body[data-page="cart"] .cart-sidebar,
body[data-page="cart"] .cart-overlay {
    display: none !important;
}

.cart-page .cart-sidebar,
.cart-page .cart-overlay {
    display: none !important;
}

/* ===== PARADISE SECTION ===== */
.paradise-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.paradise-content {
    position: relative;
    z-index: 2;
}

.paradise-content h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.paradise-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #666;
}

.steps-list {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.step {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 20px 25px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #333;
}

.step:hover {
    transform: translateX(10px);
    background: #fff;
    border-color: #d4cf34;
    box-shadow: 0 10px 30px rgba(255, 110, 199, 0.15);
}

.step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #fff03d, #ffdd00);
    transition: width 0.3s ease;
}

.step:hover::before {
    width: 100%;
    opacity: 0.1;
}

.step strong {
    color: #cfcc37;
    font-size: 18px;
    min-width: 120px;
}

.step::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #ff6ec7, #ff9a8b);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.step:hover::after {
    opacity: 0.3;
    transform: translateY(-50%) scale(1.2);
}

.step:nth-child(1)::after { 
    content: '\f49e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: #000;
    background: none;
    opacity: 1;
}
.step:nth-child(2)::after { 
    content: '\f5aa';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: #000;
    background: none;
    opacity: 1;
}
.step:nth-child(3)::after { 
    content: '\f25a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: #000;
    background: none;
    opacity: 1;
}
.step:nth-child(4)::after { 
    content: '\f2dc';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: #000;
    background: none;
    opacity: 1;
}

.paradise-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.paradise-product {
    background: linear-gradient(135deg, #ffee34 0%, #ff9a8b 100%);
    width: 300px;
    height: 300px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 110, 199, 0.3);
}

.paradise-product::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

.paradise-product small {
    font-size: 14px;
    margin-top: 15px;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: #1d1d1f;
    color: white;
    text-align: center;
    padding: 120px 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== NEWSLETTER ===== */
.newsletter {
    max-width: 100%;
    margin: 80px auto;
    padding: 35px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    z-index: -1;
}

.newsletter h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    transition: all 0.8s ease;
}

.newsletter p {
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
    transition: all 0.8s ease;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter.animate h2 {
    opacity: 1;
    transform: translateY(0);
}

.newsletter.animate p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.newsletter.animate .newsletter-form {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.4s;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: #667eea;
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.newsletter-button, 
.newsletter-submit {
    background: #2c3e50;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.newsletter-submit {
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 14px;
}

.newsletter-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.newsletter-button:hover::before {
    width: 300px;
    height: 300px;
}

.newsletter-button:hover, 
.newsletter-submit:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-brand .logo-icon {
    background: white;
    color: #333;
}

.footer-section h3, 
.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #667eea;
}

.footer-section h4 {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ccc;
}

.footer-section p {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: white;
}

.social-icons, 
.social-links {
    display: flex;
    gap: 15px;
}

.social-links {
    gap: 10px;
}

.social-icon, 
.social-link {
    width: 40px;
    height: 40px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.social-link {
    width: 32px;
    height: 32px;
    background: #555;
}

.social-icon:hover {
    background: #764ba2;
}

.social-link:hover {
    background: #666;
}

.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: #bbb;
    font-size: 14px;
}

.payment-methods, 
.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.payment-icons {
    gap: 8px;
    margin-top: 15px;
}

.payment-icon {
    width: 40px;
    height: 25px;
    background: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    color: #333;
}

.payment-icons .payment-icon {
    width: 32px;
    height: 20px;
    border-radius: 2px;
    font-size: 8px;
}

/* ===== FAQ PAGE SPECIFIC ===== */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    border-color: #007bff;
    transform: translateY(-2px);
}

.category-card.active {
    border-color: #007bff;
    background: #f8f9ff;
}

.category-icon {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 15px;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.category-desc {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.4;
}

.faq-items {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question.active {
    background: #f8f9ff;
    color: #007bff;
}

.question-text {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.4;
}

.faq-question.active .question-text {
    color: #007bff;
}

.faq-icon {
    font-size: 1.2rem;
    color: #6c757d;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
    color: #007bff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafafa;
}

.faq-answer.active {
    max-height: 1000px;
}

.answer-content {
    padding: 25px 30px;
    color: #6c757d;
    line-height: 1.6;
}

.answer-content p {
    margin-bottom: 15px;
}

.answer-content p:last-child {
    margin-bottom: 0;
}

.answer-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.answer-content li {
    margin-bottom: 8px;
}

.highlight {
    background: #fff3cd;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #ffc107;
    margin: 15px 0;
}

.steps {
    background: #d4edda;
    padding: 15px 30px;
    border-radius: 6px;
    border-left: 4px solid #28a745;
    margin: 15px 0;
}

.warning {
    background: #f8d7da;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #dc3545;
    margin: 15px 0;
}

.faq-search {
    margin-bottom: 40px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #007bff;
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

.faq-item.hidden {
    display: none;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
    display: none;
}

.no-results.show {
    display: block;
}

/* ===== CONTACT PAGE SPECIFIC ===== */
.contact-section {
    padding: 80px 0;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    background: white;
    padding: 50px 40px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.contact-item {
    margin-bottom: 35px;
    display: flex;
    align-items: flex-start;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 20px;
    margin-right: 20px;
    margin-top: 2px;
    color: #007bff;
    font-size: 16px;
}

.contact-details h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details p {
    margin: 0;
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-form {
    background: white;
    padding: 50px 40px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: #2c3e50;
    color: white;
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #007bff;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===== ANIMATIONS ===== */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.stagger-container .animate-in.visible {
    animation: staggerUp 0.6s ease forwards;
}

@keyframes staggerUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-container .animate-in:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-container .animate-in:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-container .animate-in:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-container .animate-in:nth-child(4) {
    transition-delay: 0.4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(-100%);
    }
}

.hero-content, 
.feature, 
.product-card {
    animation: fadeInUp 0.8s ease forwards;
}

.feature:nth-child(2) {
    animation-delay: 0.2s;
}

.feature:nth-child(3) {
    animation-delay: 0.4s;
}

.product-card:nth-child(2) {
    animation-delay: 0.1s;
}

.product-card:nth-child(3) {
    animation-delay: 0.2s;
}

.product-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* ===== PAGE LOADER ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: all 0.8s ease;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-logo {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.loader-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    z-index: 9999;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

/* ===== PARTICLE EFFECT ===== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .sd {
        width: 90%;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .hero-product {
        max-width: 350px;
        padding: 25px;
    }
}

/* Tablets */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .search-box input {
        width: 180px;
    }

    .nav-right {
        gap: 15px;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        margin: 30px auto;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 60px auto;
    }

    .products-grid, 
    .similar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .similar-grid {
        gap: 15px;
    }

    .paradise-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }

    .main-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 15px;
    }

    .cart-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .order-summary {
        position: static;
    }

    .share-btn {
        display: none;
    }

    .tab-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tab-button {
        white-space: nowrap;
        margin-right: 30px;
    }

    body {
        padding-top: 100px;
    }
    
    body.header-compact {
        padding-top: 70px;
    }
    
    .header-container.scrolled .header {
        padding: 6px 0;
        font-size: 11px;
    }
    
    .header-container.scrolled .navbar {
        padding: 8px 0;
    }
    
    .header-container.scrolled .mobile-nav {
        top: 60px;
    }

    #header-placeholder.loading {
        height: 100px;
    }
    
    #footer-placeholder.loading {
        height: 300px;
    }

    #cartSidebar {
        width: 100% !important;
        right: -100% !important;
    }
    
    #cartSidebar.active {
        right: 0 !important;
    }

    .cart-footer {
        padding: 20px;
        border-top: 1px solid #f0f0f0;
        background: #fafafa;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }

    .search-box {
        display: none;
    }

    .nav-right {
        gap: 10px;
    }

    .hero {
        min-height: auto;
        padding: 20px 15px;
        margin: 20px auto;
    }
    
    .sd {
        flex-direction: column;
        width: 100%;
        gap: 30px;
        text-align: center;
        align-items: center;
        margin-top: 25px;
        margin-bottom: 26px;
    }
    
    .hero-content {
        width: 100%;
        order: 1;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .hero-content p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 25px;
        text-align: center;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-button {
        margin: 0 auto;
        display: inline-flex;
    }
    
    .hero-image {
        width: 100%;
        order: 2;
        display: flex;
        justify-content: center;
    }
    
    .hero-product {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .product-image {
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
        border-radius: 15px;
    }
    
    .logo-text {
        font-size: 24px;
        line-height: 1.1;
    }
    
    .logo-subtext {
        font-size: 14px;
        margin-top: 8px;
    }
    
    .hero-product h3 {
        font-size: 20px;
        margin-bottom: 10px;
        color: #333;
    }
    
    .hero-product p {
        font-size: 24px;
        color: #666;
        font-weight: bold;
        margin: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section {
        padding: 80px 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features {
        margin: 40px auto;
        padding: 0 15px;
    }

    .best-selling, 
    .similar-products {
        padding: 0 15px;
    }

    .products-grid, 
    .similar-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .similar-grid {
        gap: 12px;
    }

    .product-card-image, 
    .similar-image {
        height: 150px;
        font-size: 12px;
        padding: 15px;
    }

    .paradise-section {
        padding: 0 15px;
        gap: 30px;
    }

    .paradise-product {
        width: 250px;
        height: 300px;
        font-size: 14px;
    }

    .newsletter {
        padding: 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .product-title {
        font-size: 22px;
    }

    .product-price {
        font-size: 26px;
    }

    .main-image {
        height: 350px;
        max-width: 100%;
    }

    .reviews-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }

    .cart-container {
        padding: 15px;
    }

    .cart-section, 
    .order-summary {
        padding: 20px;
    }

    .cart-item {
        flex-wrap: wrap;
        gap: 15px;
    }

    .item-image {
        width: 60px;
        height: 60px;
    }

    .quantity-controls {
        margin: 0;
    }

    .results-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .contact-hero,
    .faq-hero {
        padding: 100px 0 60px;
    }

    .contact-section,
    .faq-section {
        padding: 60px 0;
    }

    .contact-container,
    .faq-container {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 600px;
        padding: 0 15px;
    }

    .contact-info,
    .contact-form {
        padding: 40px 30px;
    }

    .contact-item {
        margin-bottom: 30px;
    }

    .contact-icon {
        margin-right: 15px;
    }

    .faq-categories {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .category-card {
        padding: 25px 20px;
    }

    .faq-question {
        padding: 20px 15px;
    }

    .answer-content {
        padding: 20px 15px;
    }

    .question-text {
        font-size: 0.95rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    body {
        padding-top: 90px;
    }
    
    body.header-compact {
        padding-top: 60px;
    }
    
    .header-container.scrolled .mobile-nav {
        top: 80px;
    }

    #header-placeholder.loading {
        height: 90px;
    }
    
    #footer-placeholder.loading {
        height: 250px;
    }

    .hero {
        padding: 15px 10px;
        margin: 15px auto;
    }
    
    .sd {
        gap: 25px;
    }
    
    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
        max-width: 95%;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .hero-product {
        max-width: 300px;
        padding: 20px 15px;
    }
    
    .product-image {
        height: 180px;
        margin-bottom: 15px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .logo-subtext {
        font-size: 13px;
    }
    
    .hero-product h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .hero-product p {
        font-size: 22px;
    }

    .logo {
        font-size: 20px;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }

    .hero-product {
        max-width: 280px;
        padding: 25px 15px;
    }

    .product-image {
        width: 120px;
        height: 150px;
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
    }

    .paradise-content h2 {
        font-size: 28px;
    }

    .newsletter h2 {
        font-size: 28px;
    }

    .paradise-product {
        width: 220px;
        height: 250px;
        font-size: 13px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .feature h3 {
        font-size: 18px;
    }

    .feature p {
        font-size: 13px;
    }

    .product-info {
        padding: 15px;
    }

    .product-name {
        font-size: 14px;
    }

    .price {
        font-size: 16px;
    }

    .stock-status {
        font-size: 10px;
    }

    .nav-container {
        padding: 0 10px;
    }

    .breadcrumb {
        padding: 15px 10px 0;
        font-size: 12px;
    }

    .main-content {
        gap: 30px;
    }

    .product-title {
        font-size: 20px;
    }

    .product-price {
        font-size: 24px;
    }

    .main-image {
        height: 300px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .big-rating {
        font-size: 36px;
    }

    .tabs-section {
        padding: 0 10px;
    }

    .page-title {
        font-size: 24px;
    }

    .cart-item {
        padding: 15px 0;
    }

    .item-details {
        width: 100%;
    }

    .item-price {
        margin: 10px 0;
    }

    .quantity-controls {
        margin: 10px 0;
    }

    .continue-shopping-btn {
        padding: 10px 15px;
        font-size: 13px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }

    .contact-container,
    .faq-container {
        padding: 0 15px;
    }

    .form-control {
        padding: 14px 0;
    }

    .submit-btn {
        padding: 16px;
    }

    .faq-question {
        padding: 18px 12px;
    }

    .answer-content {
        padding: 18px 12px;
    }
}

/* Very small devices */
@media (max-width: 360px) {
    .hero {
        padding: 10px 8px;
    }
    
    .hero-content h1 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero-product {
        max-width: 280px;
        padding: 15px 12px;
    }
    
    .product-image {
        height: 160px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-subtext {
        font-size: 11px;
    }
    
    .hero-product h3 {
        font-size: 16px;
    }
    
    .hero-product p {
        font-size: 20px;
    }

    .nav-container {
        padding: 0 10px;
    }

    .hero {
        padding: 0 10px;
    }

    .best-selling, 
    .features, 
    .paradise-section, 
    .newsletter, 
    .similar-products {
        padding: 0 10px;
    }

    .paradise-product {
        width: 200px;
        height: 220px;
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .hero::before {
        animation-duration: 15s;
    }
    
    .feature:hover {
        transform: translateY(-5px) scale(1.02);
    }
    
    .product-card:hover {
        transform: translateY(-10px) scale(1.02);
    }
    
    .paradise-product:hover {
        transform: scale(1.03) rotate(1deg);
    }

    .hero {
        overflow-x: hidden;
        width: 100%;
        box-sizing: border-box;
    }
    
    .sd {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-content,
    .hero-image,
    .hero-product {
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* iOS optimizations */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 768px) {
        .hero {
            -webkit-overflow-scrolling: touch;
        }
        
        .hero-content h1,
        .hero-product h3 {
            -webkit-font-smoothing: antialiased;
        }
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01s !important;
    }
}/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 120px;
    transition: padding-top 0.3s ease;
}

body.header-compact {
    padding-top: 80px;
}

body.loading {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== COMMON UI ELEMENTS ===== */
/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Form Elements */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 16px 0;
    border: none;
    border-bottom: 1px solid #e9ecef;
    font-size: 16px;
    background: transparent;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-control:focus {
    border-bottom-color: #007bff;
}

.form-control.textarea {
    border: 1px solid #e9ecef;
    border-radius: 2px;
    padding: 16px;
    min-height: 120px;
    resize: vertical;
    margin-top: 5px;
}

.form-control.textarea:focus {
    border-color: #007bff;
}

/* Messages */
.message {
    padding: 20px;
    border-radius: 2px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 0.9rem;
    display: none;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Cards */
.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Loading Animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background-color: #2c3e50;
    color: white;
    padding: 8px 0;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.header-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-container.hidden {
    transform: translateY(-100%);
}

.header-container.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container.scrolled .header {
    padding: 8px 0;
    font-size: 12px;
}

.header-container.scrolled .navbar {
    padding: 10px 0;
}

.header-container.scrolled .logo {
    font-size: 20px;
}

.header-container.scrolled .logo-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

ul.nav-links > li > a {
    font-size: 16px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.logo-icon {
    width: 28px;
    height: 28px;
    background: #333;
    border-radius: 50%;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #667eea;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    position: relative;
}

.search-box input {
    padding: 8px 35px 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    width: 250px;
    font-size: 13px;
    outline: none;
    background: #f8f9fa;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    border-color: #667eea;
}

.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
}

.nav-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    opacity: 0.7;
    position: relative;
    transition: opacity 0.3s ease;
}

.nav-icon:hover {
    opacity: 1;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 3px;
}

.mobile-menu span {
    width: 20px;
    height: 2px;
    background: #333;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    padding: 20px;
}

.mobile-nav.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.mobile-nav ul li:last-child {
    border-bottom: none;
}

.mobile-nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: block;
}

/* ===== COMPONENT PLACEHOLDERS ===== */
#header-placeholder.loading {
    height: 120px;
    background: linear-gradient(90deg, #f0f0f0 25%, rgba(255,255,255,0) 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: placeholderShimmer 1.5s infinite;
    position: relative;
}

#header-placeholder.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: #667eea;
    opacity: 0.1;
}

#header-placeholder.loading::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 80px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

#footer-placeholder.loading {
    height: 400px;
    background: linear-gradient(90deg, #333 25%, rgba(85,85,85,0) 50%, #333 75%);
    background-size: 200% 100%;
    animation: placeholderShimmer 1.5s infinite;
    margin-top: 80px;
}

@keyframes placeholderShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.component-error {
    padding: 20px;
    text-align: center;
    color: #999;
    background: #f8f8f8;
    border: 1px dashed #ddd;
    border-radius: 4px;
    margin: 10px;
    font-size: 14px;
}

#header-placeholder,
#footer-placeholder {
    transition: height 0.3s ease;
}

#header-placeholder:not(.loading),
#footer-placeholder:not(.loading) {
    height: auto;
}

#header-placeholder:empty,
#footer-placeholder:empty {
    min-height: 60px;
    background: #fafafa;
}

/* ===== HERO SECTIONS ===== */
.hero {
    max-width: 100%;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    min-height: 500px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        rgba(102, 126, 234, 0.1) 0%, 
        rgba(118, 75, 162, 0.1) 50%, 
        rgba(102, 126, 234, 0.1) 100%);
    animation: heroBackground 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes heroBackground {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

.about-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.contact-hero,
.faq-hero {
    background: white;
    padding: 120px 0 80px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards 0.3s;
}

.about-hero .hero-title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1d1d1f;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    background: linear-gradient(166deg, #393939 0%, #dfd04e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards 0.6s;
}

.about-hero .hero-subtitle {
    z-index: 41554;
    font-size: 1.25rem;
    color: #5f5f5f;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.5;
    animation: fadeInUp 1s ease-out 0.8s backwards;
    position: relative;
    opacity: 1;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sd {
    display: flex;
    width: 80%;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    width: 50%;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(166deg, #393939 0%, #dfd04e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.3)); }
    100% { filter: drop-shadow(0 0 20px rgba(118, 75, 162, 0.5)); }
}

.hero-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== CTA BUTTON ===== */
.cta-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e8e8e8 0%, #ffffff 20%, #d4d4d45c 40%, #f0f0f0 60%, #c0c0c02b 80%, #e8e8e8ad 100%);
    color: #333;
    border: 2px solid #d9d9d62e;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease-out 1.1s backwards;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.6), 
        transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        transparent 50%, 
        rgba(0, 0, 0, 0.1) 100%);
    border-radius: 50px;
    pointer-events: none;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, 
        #f0f0f0 0%, 
        #ffffff 20%, 
        #e0e0e0 40%, 
        #f8f8f8 60%, 
        #d0d0d0 80%, 
        #f0f0f0 100%);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, 
        #d0d0d0 0%, 
        #e8e8e8 20%, 
        #c8c8c8 40%, 
        #e0e0e0 60%, 
        #b8b8b8 80%, 
        #d0d0d0 100%);
}

.cta-button span {
    position: relative;
    z-index: 2;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.cta-button:hover span {
    transform: translateX(5px);
}

/* ===== PRODUCT ELEMENTS ===== */
.hero-product {
    text-align: center;
    border-radius: 20px;
    max-width: 400px;
    transition: transform 0.3s ease;
}

.hero-product:hover .cst2 {
    transform: scale(1.05);
}

.product-image {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #00000038 0%, #53535370 100%);
    border-radius: 20px;
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.product-logo {
    border-radius: 8px;
    padding: 20px 30px;
}

.logo-text {
    font-size: 32px;
    font-weight: bold;
    background: linear-gradient(135deg, #ffffff 100%, #fffa6b 99%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffea1000;
    background-clip: text;
    text-shadow: 2px 2px 4px rgb(255 255 255 / 30%);
    line-height: 1;
    margin-bottom: 8px;
}

.logo-subtext {
    font-size: 18px;
    background: linear-gradient(135deg, #ffed4e 0%, #fff700 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 900;
}

.hero-product h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-product p {
    font-size: 28px;
    color: #666;
    font-weight: bold;
}

.cst2 {
    transition: transform 0.3s ease;
}

/* ===== SECTIONS ===== */
.section {
    padding: 120px 0;
    position: relative;
}

.section:nth-child(even) {
    background: #fbfbfd;
}

.section-title,
.similar-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.section-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-hero .section-title {
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
    color: #1d1d1f;
}

.similar-title {
    font-size: 24px;
    margin-bottom: 5px;
    text-align: left;
}

.similar-subtitle {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

/* ===== FEATURES SECTION ===== */
.features {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.feature:nth-child(1).animate { animation-delay: 0.1s; }
.feature:nth-child(2).animate { animation-delay: 0.3s; }
.feature:nth-child(3).animate { animation-delay: 0.5s; }

.feature:hover {
    transform: translateY(-10px) scale(1.05);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d5d5d5 0%, #5c5c5c 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 3s ease-in-out infinite;
}

.feature:nth-child(2) .feature-icon {
    animation-delay: -1s;
}

.feature:nth-child(3) .feature-icon {
    animation-delay: -2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.feature:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.feature h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== VALUES & TEAM SECTIONS ===== */
.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #1d1d1f;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.value-item {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1d1d1f;
}

.value-description {
    color: #86868b;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.team-member {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.member-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1d1d1f;
}

.member-role {
    font-size: 1rem;
    color: #3498db;
    margin-bottom: 1rem;
    font-weight: 500;
}

.member-bio {
    color: #86868b;
    line-height: 1.6;
}

/* ===== PRODUCTS GRID ===== */
.best-selling, 
.similar-products {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.products-grid, 
.similar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 32px;
}

.similar-grid {
    gap: 25px;
}

.product-card, 
.similar-product {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.similar-product {
    border-radius: 8px;
}

.product-card:hover, 
.similar-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.similar-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.product-card-image, 
.similar-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.similar-image {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    font-size: 12px;
    color: #666;
    padding: 15px;
}

/* Product Card Specific Gradients */
.product-card[data-id="1"] .product-card-image {
    background: linear-gradient(135deg, #ff6ec7 0%, #ff9a8b 100%);
    height: 250px;
    font-size: 24px;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.product-card[data-id="2"] .product-card-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 250px;
    font-size: 24px;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.product-card[data-id="3"] .product-card-image {
    background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
    height: 250px;
    font-size: 24px;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.product-card-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.product-card-image small {
    font-size: 12px;
    margin-top: 10px;
    opacity: 0.9;
}

.product-info, 
.similar-info {
    padding: 20px;
}

.similar-info {
    padding: 15px;
}

.product-name, 
.similar-name {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.similar-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.product-price, 
.similar-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.price, 
.similar-price {
    font-size: 18px;
    font-weight: 700;
    color: #667eea;
}

.similar-price {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.stock-status, 
.similar-stock {
    font-size: 12px;
    color: #28a745;
    font-weight: 500;
}

.similar-stock {
    font-size: 10px;
    color: #2e7d2e;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background: #fff;
    padding: 16px 0;
    border-bottom: 1px solid #e9ecef;
    max-width: 100%;
    margin: 0 auto;
    font-size: 14px;
    color: #666;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6c757d;
}

.breadcrumb a {
    color: #6c757d;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #007bff;
    text-decoration: underline;
}

/* ===== MAIN CONTAINERS ===== */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px;
}

.content-area {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* ===== RESULTS HEADER & SORTING ===== */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.results-count {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.sort-by {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-by span {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.sort-select {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    background: white;
    min-width: 160px;
    outline: none;
}

.sort-controls {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

/* ===== ADD TO CART BUTTONS ===== */
.add-to-cart-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.add-to-cart-btn::after {
    content: '🛒';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    transition: transform 0.3s ease;
}

.add-to-cart-btn:hover::after {
    transform: translateY(-50%) scale(1);
}

/* Product-specific button colors */
.product-card[data-id="1"] .add-to-cart-btn {
    background: linear-gradient(135deg, #ff6ec7 0%, #ff9a8b 100%);
}

.product-card[data-id="1"] .add-to-cart-btn:hover {
    box-shadow: 0 5px 15px rgba(255, 110, 199, 0.4);
}

.product-card[data-id="2"] .add-to-cart-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.product-card[data-id="2"] .add-to-cart-btn:hover {
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.product-card[data-id="3"] .add-to-cart-btn {
    background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
}

.product-card[data-id="3"] .add-to-cart-btn:hover {
    box-shadow: 0 5px 15px rgba(0, 180, 219, 0.4);
}

/* ===== PRODUCT PAGE ELEMENTS ===== */
.share-btn {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 100;
}

.product-image-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    width: 100%;
    max-width: 400px;
    height: 480px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.image-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #333;
}

.product-info {
    padding-top: 20px;
}

.product-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.stars, 
.rating-stars {
    color: #333;
    font-size: 16px;
    letter-spacing: 1px;
}

.rating-text, 
.review-count {
    font-size: 14px;
    color: #666;
}

.stock-badge {
    background: #e8f5e8;
    color: #2e7d2e;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    margin-left: auto;
}

.product-price {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

/* ===== PRODUCT OPTIONS ===== */
.product-options {
    margin-bottom: 30px;
}

.option-group {
    margin-bottom: 25px;
}

.option-label, 
.quantity-label {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.color-swatches {
    display: flex;
    gap: 8px;
}

.color-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.color-swatch.active {
    border-color: #333;
    transform: scale(1.1);
}

.swatch-blue { background-color: #4a90e2; }
.swatch-gray { background-color: #9b9b9b; }
.swatch-green { background-color: #7ed321; }

.size-options {
    display: flex;
    gap: 8px;
}

.size-btn {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.size-btn.active {
    background: #333;
    color: white;
    border-color: #333;
}

.quantity-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn {
    background: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    transition: background 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #f5f5f5;
}

.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.qty-input {
    border: none;
    padding: 8px 12px;
    width: 50px;
    text-align: center;
    font-size: 14px;
    outline: none;
    height: 36px;
}

input.qty-input::-webkit-outer-spin-button,
input.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ===== ACTION BUTTONS ===== */
.action-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.add-to-cart {
    flex: 1;
    background: #333;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-to-cart:hover {
    background: #1a1a1a;
}

.wishlist-btn {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    border-color: #333;
    color: #333;
}

.shipping-note {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 10px;
}

/* ===== TABS SECTION ===== */
.tabs-section {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.tab-nav {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 40px;
}

.tab-button {
    background: none;
    border: none;
    padding: 15px 0;
    margin-right: 40px;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-button.active {
    color: #333;
    border-bottom-color: #333;
    font-weight: 500;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ===== REVIEWS ===== */
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 15px;
}

.big-rating {
    font-size: 48px;
    font-weight: 600;
    color: #333;
    line-height: 1;
}

.rating-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.write-review {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 400;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.write-review:hover {
    border-color: #333;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 30px;
}

.review:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 36px;
    height: 36px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    color: #666;
}

.reviewer-info h4 {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
}

.review-date {
    font-size: 12px;
    color: #999;
}

.review-rating {
    color: #333;
    font-size: 14px;
    letter-spacing: 1px;
}

.review-text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.load-more {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 12px;
    color: #333;
    cursor: pointer;
    margin: 40px auto 0;
    display: block;
    transition: all 0.3s ease;
}

.load-more:hover {
    border-color: #333;
}

/* ===== DETAILS TAB ===== */
.details-content {
    max-width: 800px;
}

.details-content h3 {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.details-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    margin: 25px 0;
}

.features-list li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.features-list li:before {
    content: "•";
    color: #333;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* ===== CART PAGE ===== */
.page-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 20px;
}

.page-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.cart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.cart-section {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cart-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    animation: fadeIn 0.5s ease forwards;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item.removing {
    animation: fadeOut 0.3s ease forwards;
}

.item-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    text-align: center;
    font-weight: 600;
    flex-shrink: 0;
}

.item-details {
    flex: 1;
}

.item-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.item-options {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #666;
}

.option {
    display: flex;
    align-items: center;
    gap: 5px;
}

.color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #ddd;
}

.color-gray { background-color: #9b9b9b; }
.color-blue { background-color: #4a90e2; }
.color-green { background-color: #7ed321; }

.item-price {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 20px;
    min-width: 70px;
    text-align: right;
}

.remove-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 18px;
    padding: 8px;
    transition: color 0.3s ease;
}

.remove-btn:hover {
    color: #e74c3c;
}

/* ===== ORDER SUMMARY ===== */
.order-summary {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
}

.summary-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.summary-label {
    color: #666;
}

.summary-value {
    color: #333;
    font-weight: 500;
}

.summary-total {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    margin-top: 20px;
}

.summary-total .summary-label,
.summary-total .summary-value {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.checkout-btn {
    width: 100%;
    background: #333;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 25px;
}

.checkout-btn:hover {
    background: #1a1a1a;
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.continue-shopping {
    width: 100%;
    background: white;
    color: #333;
    border: 1px solid #e0e0e0;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 15px;
    text-decoration: none;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
}

.continue-shopping:hover {
    border-color: #333;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.empty-cart h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.empty-cart p {
    font-size: 16px;
    margin-bottom: 30px;
}

.shop-now-btn {
    background: #333;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.shop-now-btn:hover {
    background: #1a1a1a;
}

/* ===== CART SIDEBAR ===== */
#cartSidebar {
    position: fixed !important;
    top: 0 !important;
    right: -400px !important;
    width: 400px !important;
    height: 100vh !important;
    background: white !important;
}