
/* ===================================
    Product Page CSS - Mobile Optimized
   =================================== */

 /* CSS Variables */
:root {
    --primary-color: #f43f5e;
    --primary-dark: #3a00a6;
    --primary-light: #a05bff;
    --secondary-color: #f43f5e;
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    
    --background: #fdfcfc;
    --background-secondary: #ffffff;
    --text: #1e293b;
    --text-muted:rgb(0, 0, 0);
    
    --neutral-50:rgb(255, 255, 255);
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    --neutral-400: #94a3b8;
    --neutral-500: #64748b;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;
    
    --radius-sm: 0.25rem;
    --radius-md: 0.7rem;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --font-sans: 'Cairo', sans-serif;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-sans);
}
html {
    overflow-x: hidden;
    width: 100%;
}

    background-color: var(--background-primary);
    color: var(--text-primary);
    line-height: 1.6;
    direction: rtl;
    overflow-x: hidden;
    min-height: 100vh;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
}

/* Dark Theme */
[data-theme="dark"] {
    --background: #000000;
    --background-secondary: #000000;
    --text:rgb(255, 255, 255);
    --text-muted: rgb(255, 255, 255);
    --neutral-50: #1e293b;
    --neutral-100: #334155;
    --neutral-200: #475569;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

/* News Bar Styles */
.news-bar {
    padding: 8px 0;
    text-align: center;
    position: relative;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: #000000;
    color: #ffffff;
}

.news-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
}

.news-icon {
    font-size: 1.1rem;
}

/* Header Styles */
.main-header {
    background: rgb(255 255 255 / 0%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--neutral-200);
    padding: 1rem 0;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo i {
    color: var(--primary-color);
    font-size: 2rem;
}

.logo-image {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(109, 40, 217, 0.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: var(--background-secondary);
    border: 1px solid var(--neutral-200);
    color: var(--text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 2000;
    transition: right 0.3s ease;
}

.mobile-menu.show {
    right: 0;
}

.mobile-menu-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: var(--background);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--neutral-200);
    background: var(--background-secondary);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.mobile-logo i {
    font-size: 1.5rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: var(--error-color);
    color: white;
}

.mobile-nav {
    padding: 1.5rem 0;
}

.mobile-nav-section {
    margin-bottom: 2rem;
}

.mobile-nav-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    padding: 0 1.5rem 1rem;
    border-bottom: 1px solid var(--neutral-200);
    margin-bottom: 1rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
    background: var(--background-secondary);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

.mobile-nav-link i:first-child {
    width: 20px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover i:first-child {
    color: var(--primary-color);
}

.mobile-nav-link i:last-child {
    margin-right: auto;
    opacity: 0.5;
    font-size: 0.8rem;
}

.social-links-mobile {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-link.whatsapp {
    background: #25d366;
}

.social-link.telegram {
    background: #0088cc;
}

.social-link.youtube {
    background: #ff0000;
}

.social-link.tiktok {
    background: #000000;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mobile-theme-toggle {
    padding: 0 1.5rem;
    margin-top: 2rem;
}

.theme-toggle-mobile {
    width: 100%;
    background: var(--background-secondary);
    border: 1px solid var(--neutral-200);
    color: var(--text);
    padding: 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
}

.theme-toggle-mobile:hover {
    background: var(--primary-color);
    color: white;
}

/* Product Section */
.product-section {
    padding: 3rem 0;
    min-height: calc(100vh - 80px);
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

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

.main-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    background: var(--background-secondary);
}

.main-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

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

.product-badge {
    position: absolute;
    top: 0.3rem;
    right: 0.3rem;
    background: var(--error-color);
    color: white;
    padding: 0rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.zoom-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.75rem;
    padding: 1rem 0;
}

.thumbnail {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: var(--background-secondary);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-sm);
}

/* Product Info */
.product-info {
padding: 0px;
      margin-right: 0.5rem;

  
      
      }

.product-category {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: var(--warning-color);
    font-size: 1.2rem;
}

.rating-text {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
}

.product-pricing {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}

.current-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--success-color);
}

.original-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.5rem;
    font-weight: 500;
}

.discount-badge {
    background: var(--error-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 700;
}

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

.product-description {
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* Enhanced Special Offers Styles */
.offers-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    border: 2px solid #10b981;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.offers-section h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: #065f46;
}

.offers-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.offer-option {
    border: 2px solid #cbd5e1;
    border-radius: var(--radius-md);
    background: white;
    transition: all 0.3s ease;
    overflow: hidden;
}

.offer-option:has(input:checked) {
    border-color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
    background: #dcfce7;
}

.offer-label {
    display: block;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.offer-label:hover {
    background: #f8fafc;
}

.offer-label input {
    display: none;
}

.offer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.offer-text {
    font-weight: 600;
    color: #1e293b;
}

.offer-price {
    font-weight: 800;
    color: #059669;
    font-size: 1.1rem;
}

.free-shipping {
    background: #dcfce7;
    color: #166534;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
}

.offer-colors,
.offer-sizes,
.offer-quantity {
    padding: 1rem;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
    display: none;
}

.offer-colors h5,
.offer-sizes h5,
.offer-quantity h5 {
    margin-bottom: 0.75rem;
    color: #374151;
    font-size: 0.9rem;
    font-weight: 600;
}

.colors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.5rem;
}

.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-option:has(input:checked) {
    border-color: var(--primary-color);
    background: rgba(109, 40, 217, 0.1);
}

.color-option input {
    display: none;
}

.color-preview {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
}

.color-option span {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.sizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 0.5rem;
}

.size-option {
    padding: 0.75rem;
    border: 2px solid #cbd5e1;
    border-radius: var(--radius-md);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.size-option:has(input:checked) {
    border-color: var(--primary-color);
    background: rgba(109, 40, 217, 0.1);
    color: var(--primary-color);
}

.size-option input {
    display: none;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qty-btn {
    width: 35px;
    height: 35px;
    border: 2px solid #cbd5e1;
    background: white;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
}

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

.qty-display {
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 30px;
    text-align: center;
}

/* Compact Order Form - Enhanced for Mobile */
.compact-order-form {
    border: 3px solid #10b981;
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin: 1.5rem 0;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15), 0 8px 16px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    color: #1e293b;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.compact-order-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669, #047857);
    background-size: 300% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.form-header-inside {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 1rem;
    padding: 0.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

.form-title-inside {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
    text-align: center;
    color: #1e293b;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.compact-order-form input,
.compact-order-form select {
    padding: 0.75rem;
    border: 2px solid #000000;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    width: 100%;
    box-sizing: border-box;
}

.compact-order-form input:focus,
.compact-order-form select:focus {
    border-color: #10b981;
    outline: none;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15), 0 4px 8px rgba(16, 185, 129, 0.1);
    transform: translateY(-1px);
    background: linear-gradient(135deg, #ffffff 0%, #ecfdf5 100%);
}

.delivery-compact {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

.delivery-btn {
    flex: 1;
    cursor: pointer;
    text-align: center;
    padding: 0.75rem;
    border: 2px solid #cbd5e1;
    border-radius: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    background: #ffffff;
    white-space: nowrap;
}

.delivery-btn input {
    display: none;
}

.delivery-btn:has(input:checked) {
    border-color: #10b981;
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    transform: translateY(-1px);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
}

.delivery-btn[data-delivery-type="office"]:has(input:checked) {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
}

.delivery-btn[data-delivery-type="home"]:has(input:checked) {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
}

.quantity-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #cbd5e1;
    border-radius: var(--radius-md);
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    gap: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    width: 100%;
    justify-content: space-around;
}

.quantity-compact button {
    width: 40px;
    height: 40px;
    border: none;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-compact button:hover {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    transform: scale(1.05);
}

.quantity-compact span {
    width: 45px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    color: #1e293b;
    min-width: 40px;
}

.price-summary {
    border-radius: var(--radius-md);
    padding: 1rem;
    border: 2px solid #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
    position: relative;
    overflow: hidden;
}

.price-details {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.price-details.show {
    opacity: 1;
    max-height: 200px;
    margin-bottom: 1rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color:rgb(0, 0, 0);
}

.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #065f46;
    border-top: 2px solid #e2e8f0;
    margin-top: 0.5rem;
}

.price-summary button {
    background-color: #10b981;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
}

.price-summary button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.product-features {
    background: var(--neutral-50);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid var(--neutral-200);
}

.product-features h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

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

.product-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--neutral-200);
}

.product-features li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.product-features li i {
    color: var(--success-color);
    font-size: 1.2rem;
    width: 20px;
}

.product-stock {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    color: var(--success-color);
    padding: 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Specifications */
.product-specs {
    background: var(--neutral-50);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid var(--neutral-200);
}

.product-specs h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.specs-grid {
    display: grid;
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--background);
    border-radius: var(--radius-md);
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.spec-label {
    font-weight: 700;
    color: var(--text);
}

.spec-value {
    color: var(--text-muted);
    font-weight: 600;
}

/* Additional Details */
.product-additional {
    background: rgb(255 255 255);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--neutral-200);
    margin-bottom: 1rem;
}

.additional-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.additional-content {
    color: black;
    font-size: 1.5rem;
    line-height: 1.8;
}

/* Video Styles */
.video-section {
    margin: 2rem 0;
}

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

.video-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.video-slide {
    display: none;
}

.video-slide.active {
    display: block;
}

.slider-controls {
    position: absolute;
    top: 38%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    transform: translateY(-50%);
}

.slider-btn {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.video-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-embed-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.video-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 1rem;
    background: var(--background-secondary);
    text-align: center;
}

.video-info h4 {
    color: var(--text);
    font-weight: 600;
}

/* Advanced Image Gallery */
.advanced-image-gallery {
    margin: 2rem 0;
    background: var(--background-secondary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.gallery-container {
    max-width: 800px;
    margin: 0 auto;
}

.gallery-main-view {
    margin-bottom: 1rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.gallery-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-main-image:hover {
    transform: scale(1.02);
}

.gallery-main-view .zoom-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-main-view:hover .zoom-icon {
    opacity: 1;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.75rem;
}

.gallery-thumb {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-sm);
}

/* Image Zoom Modal */
.image-zoom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: zoomModalFadeIn 0.3s ease;
}

.image-zoom-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.zoom-container {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.zoom-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 3;
}

.zoom-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.zoom-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 3;
}

.zoom-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.zoom-prev {
    right: -70px;
}

.zoom-next {
    left: -70px;
}

.zoom-content {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 90vw;
    max-height: 90vh;
}

#zoomedImage {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.zoom-info {
    padding: 1rem;
    background: linear-gradient(135deg, var(--neutral-50), var(--background-secondary));
    border-top: 1px solid var(--neutral-200);
}

.zoom-caption {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    text-align: center;
}

.zoom-counter {
    font-size: 1rem;
    color: var(--text-muted);
    text-align: center;
    font-weight: 600;
}

.zoom-thumbnails {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: var(--radius-lg);
    overflow-x: auto;
    max-width: 90vw;
}

.zoom-thumb {
    width: 60px;
    height: 45px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.zoom-thumb:hover,
.zoom-thumb.active {
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(109, 40, 217, 0.5);
}

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

@keyframes zoomModalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Thank You Page */
.thank-you-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9998;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9);
    transition: all 0.5s ease;
    overflow-y: auto;
}

.thank-you-page.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: all;
}

.thank-you-container {
    background: linear-gradient(135deg, var(--background-secondary) 0%, var(--neutral-50) 100%);
    border-radius: var(--radius-2xl);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-xl);
    text-align: center;
    max-width: 700px;
    width: 100%;
    border: 1px solid var(--neutral-200);
    position: relative;
    overflow: hidden;
    max-height: 90vh;
    overflow-y: auto;
}

.intro-text {
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
    border: 2px solid #3b82f6;
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.intro-text p {
    color: #1e40af;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

/* Success Animation */
.success-animation {
    margin: 0 auto 2.5rem;
    width: 120px;
    height: 120px;
    position: relative;
}

.checkmark-circle {
    width: 120px;
    height: 120px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 5px solid var(--success-color);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
    animation: checkmarkCircleAnimation 1.5s ease;
}

@keyframes checkmarkCircleAnimation {
    0% {
        transform: scale(0) rotate(180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) rotate(90deg);
        opacity: 0.8;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.checkmark-circle .checkmark {
    width: 70px;
    height: 40px;
    border-right: 5px solid var(--success-color);
    border-top: 5px solid var(--success-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%) rotate(135deg);
    animation: checkmarkAnimation 1.2s ease 0.5s both;
    transform-origin: 0% 100%;
}

@keyframes checkmarkAnimation {
    0% {
        height: 0;
        width: 0;
        opacity: 0;
    }
    40% {
        height: 0;
        width: 70px;
        opacity: 1;
    }
    100% {
        height: 40px;
        width: 70px;
        opacity: 1;
    }
}

.thank-you-title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--success-color);
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(34, 197, 94, 0.2);
}

.thank-you-subtitle {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 600;
}

.order-summary-card {
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--background-secondary) 100%);
    border-radius: var(--radius-xl);
    padding: 0;
    margin-bottom: 2rem;
    text-align: right;
    border: 2px solid var(--neutral-200);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 1.75rem;
    text-align: center;
}

.card-header h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.card-content {
    padding: 2.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--neutral-200);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.detail-row:hover {
    background: var(--neutral-50);
    margin: 0 -1.25rem;
    padding: 1.25rem;
    border-radius: var(--radius-md);
}

.detail-row:last-child {
    border-bottom: none;
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.11), rgba(109, 40, 217, 0.05));
    margin: 1.25rem -1.25rem 0;
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-color);
}

.contact-info-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    margin-bottom: 2rem;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    color: #0369a1;
    font-weight: 700;
    font-size: 1.1rem;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row i {
    font-size: 1.4rem;
    color: #0ea5e9;
    flex-shrink: 0;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.return-button,
.copy-button,
.print-button {
    border: none;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.return-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.return-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(109, 40, 217, 0.4);
}

.copy-button {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.copy-button:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.4);
}

.print-button {
    background: linear-gradient(135deg, var(--neutral-600), var(--neutral-700));
    color: white;
}

.print-button:hover {
    background: linear-gradient(135deg, var(--neutral-700), var(--neutral-800));
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(75, 85, 99, 0.4);
}

/* Contact Buttons */
.contact-buttons {
    margin: 2rem 0;
}

.contact-buttons h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: white;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #1aaa4f);
}

.contact-btn.phone {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.contact-btn.email {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.contact-btn.telegram {
    background: linear-gradient(135deg, #0088cc, #006699);
}

.contact-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.contact-btn i {
    font-size: 1.5rem;
}

/* Social Media Section */
.social-media-section {
    margin: 2rem 0;
}

.social-media-section h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: white;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-btn.facebook {
    background: linear-gradient(135deg, #1877f2, #1565c0);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-btn.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-btn.tiktok {
    background: linear-gradient(135deg, #000000, #333333);
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.social-btn i {
    font-size: 1.5rem;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--neutral-50), var(--background-secondary));
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
}

.trust-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--success-color);
}

.trust-item i {
    color: var(--success-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Fixed Link Button Styles */
.link-button-container {
    z-index: 9999;
    transition: all 0.3s ease;
    position: fixed;
}

.link-button-bottom-center {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.link-button-bottom-right {
    bottom: 20px;
    right: 20px;
}

.link-button-bottom-left {
    bottom: 20px;
    left: 20px;
}

.link-button-top-right {
    top: 100px;
    right: 20px;
}

.link-button-top-left {
    top: 100px;
    left: 20px;
}

.link-button-middle-right {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.link-button-middle-left {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.link-button-container.hide-mobile {
    display: none;
}

.link-button-container.hide-desktop {
    display: none;
}

@media (max-width: 768px) {
    .link-button-container.hide-mobile {
        display: none !important;
    }
    .link-button-container:not(.hide-mobile) {
        display: block !important;
    }
}

@media (min-width: 769px) {
    .link-button-container.hide-desktop {
        display: none !important;
    }
    .link-button-container:not(.hide-desktop) {
        display: block !important;
    }
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    white-space: nowrap;
    user-select: none;
}

.link-button-small {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.link-button-small i {
    font-size: 1rem;
}

.link-button-medium {
    padding: 12px 20px;
    font-size: 1rem;
}

.link-button-medium i {
    font-size: 1.2rem;
}

.link-button-large {
    padding: 16px 24px;
    font-size: 1.1rem;
}

.link-button-large i {
    font-size: 1.4rem;
}

.link-button-extra-large {
    padding: 20px 32px;
    font-size: 1.3rem;
}

.link-button-extra-large i {
    font-size: 1.6rem;
}

.link-button-bounce {
    animation: linkButtonBounce 2s infinite;
}

@keyframes linkButtonBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.link-button-pulse {
    animation: linkButtonPulse 2s infinite;
}

@keyframes linkButtonPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.link-button-shake {
    animation: linkButtonShake 2s infinite;
}

@keyframes linkButtonShake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

.link-button-wobble {
    animation: linkButtonWobble 2s infinite;
}

@keyframes linkButtonWobble {
    0% { transform: rotate(0deg); }
    15% { transform: rotate(-5deg); }
    30% { transform: rotate(3deg); }
    45% { transform: rotate(-3deg); }
    60% { transform: rotate(2deg); }
    75% { transform: rotate(-1deg); }
    100% { transform: rotate(0deg); }
}

.link-button-glow {
    animation: linkButtonGlow 2s infinite alternate;
}

@keyframes linkButtonGlow {
    from {
        box-shadow: 0 4px 15px rgba(109, 40, 217, 0.4);
    }
    to {
        box-shadow: 0 8px 30px rgba(109, 40, 217, 0.8);
    }
}

.link-button-float {
    animation: linkButtonFloat 3s ease-in-out infinite;
}

@keyframes linkButtonFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.link-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.float-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    background: var(--primary-color);
    color: white;
}

.float-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.whatsapp-float {
    background: #25d366;
}

.whatsapp-float:hover {
    background: #1eaa5a;
}

/* Footer */
.main-footer {
    background: var(--neutral-50);
    border-top: 1px solid var(--neutral-200);
    padding: 3rem 0 1rem;
      margin-right: 0.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--primary-color);
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    flex-direction: row;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-bottom {
    border-top: 1px solid var(--neutral-200);
    padding-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand i {
    color: var(--error-color);
}

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

/* Form Input Validation Styles */
.form-input-error {
    border-color: var(--error-color) !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
    animation: shake 0.5s ease;
}

.form-input-success {
    border-color: var(--success-color) !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-3px); }
    20%, 40%, 60%, 80% { transform: translateX(3px); }
}

/* Form Notifications */
.form-notifications {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9999;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.notification {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInFromRight 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 60px;
    pointer-events: all;
}

.notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.notification.error::before {
    background: #ef4444;
}

.notification.success::before {
    background: #10b981;
}

.notification.warning::before {
    background: #f59e0b;
}

.notification.info::before {
    background: #3b82f6;
}

.notification-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.notification.error .notification-icon {
    color: #ef4444;
}

.notification.success .notification-icon {
    color: #10b981;
}

.notification.warning .notification-icon {
    color: #f59e0b;
}

.notification.info .notification-icon {
    color: #3b82f6;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
}

.notification.error .notification-title {
    color: #dc2626;
}

.notification.success .notification-title {
    color: #059669;
}

.notification.warning .notification-title {
    color: #d97706;
}

.notification.info .notification-title {
    color: #2563eb;
}

.notification-message {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    font-weight: 600;
}

.notification-close {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    font-size: 16px;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background: #f1f5f9;
    color: #64748b;
}

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

@keyframes slideOutToRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.notification.removing {
    animation: slideOutToRight 0.3s ease;
}

/* Custom Text Elements */
.custom-text-element {
    padding: 0.5rem;
    margin: 1.5rem 0;
    background: var(--background-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-sm);
}

.custom-text-element h3 {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.custom-text-content {
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Custom HTML Elements */
.custom-html-element {
    margin: 1rem 0;
}

/* Utility Classes */
.disabled {
    opacity: 0.5 !important;
    pointer-events: none !important;
}

.hidden {
    display: none !important;
}

.form-row-delivery-btn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.form-row-phone-name {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

/* ===============================================
   RESPONSIVE DESIGN - ENHANCED MOBILE
   =============================================== */

@media (max-width: 1024px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .main-image {
        height: auto;
    }

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

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

@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Container */
    .container {
        padding: 0 0.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Product Section */
    .product-section {
        padding: 1.5rem 0;
    }

    .product-title {
        font-size: 1.75rem;
    }

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

    .main-image {
        height: auto;
    }

    .thumbnail-images {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }

    .thumbnail {
        height: 60px;
    }

    /* Enhanced Form for Mobile */
    .compact-order-form {
        padding: 0.75rem;
        margin: 1rem 0.5rem;
        width: calc(100% - 1rem);
        max-width: 100%;
    }

    .compact-order-form input,
    .compact-order-form select {
        padding: 0.65rem;
        font-size: 0.9rem;
    }

    .form-title-inside {
        font-size: 1.1rem !important;
    }

    .form-header-inside {
        padding: 0.5rem;
        margin-bottom: 1rem;
    }

    /* Make form rows vertical on mobile */
    .form-row,
    .form-row-delivery-btn,
    .form-row-phone-name {
        gap: 0.5rem;
    }

    .delivery-compact {
        width: 100%;
    }

    .delivery-btn {
        padding: 0.65rem !important;
        font-size: 0.9rem !important;
        white-space: nowrap;
    }

    .quantity-compact {
        padding: 0.5rem;
        width: 100%;
        justify-content: space-around;
    }

    .quantity-compact button {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .quantity-compact span {
        font-size: 1.1rem;
        min-width: 40px;
    }

    .price-summary button {
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
    }

    /* Floating Buttons */
    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }

    .float-button {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    /* Image Zoom */
    .zoom-prev {
        left: 10px;
    }

    .zoom-next {
        right: 10px;
    }

    .zoom-close {
        top: 10px;
        right: 10px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    /* Thank You Page Mobile */
    .thank-you-page {
        padding: 1rem 0.5rem;
    }

    .thank-you-container {
        padding: 2rem 1rem;
        margin: 0.5rem;
        max-width: 100%;
    }

    .intro-text {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .intro-text p {
        font-size: 1rem;
    }

    .thank-you-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .success-animation {
        width: 100px;
        height: 100px;
        margin-bottom: 2rem;
    }

    .checkmark-circle {
        width: 100px;
        height: 100px;
    }

    .checkmark-circle .checkmark {
        width: 60px;
        height: 35px;
    }

    .thank-you-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .return-button,
    .copy-button,
    .print-button {
        width: 100%;
    }

    .contact-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .contact-btn,
    .social-btn {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .contact-btn i,
    .social-btn i {
        font-size: 1.3rem;
    }

    .social-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .trust-item {
        text-align: center;
        flex-direction: column;
        gap: 0.75rem;
    }

    .detail-row {
        font-size: 1rem;
        padding: 1rem 0;
        align-items: flex-start;
        gap: 0.5rem;
        text-align: right;
    }

    .detail-row:last-child {
        font-size: 1.1rem;
        padding: 1.25rem;
        text-align: center;
    }

    .card-content {
        padding: 1.5rem;
    }

    /* Notifications */
    .form-notifications {
        left: 5px;
        right: 5px;
        top: 5px;
        max-width: none;
    }

    .notification {
        margin: 0;
        max-width: 100%;
        padding: 12px 15px;
    }

    /* Video responsive */
    .video-grid {
        grid-template-columns: 1fr;
    }

    .gallery-main-image {
        height: 250px;
    }

    .gallery-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-thumb {
        height: 60px;
    }

    /* Offers mobile */
    .colors-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sizes-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 0.25rem;
    }

    /* Typography */
    .product-title {
        font-size: 1.5rem;
    }

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

    /* Images */
    .main-image {
        height: auto;
    }

    .thumbnail {
        height: 100px;
    }

    /* Form - Extra Small Screens */
    .compact-order-form {
        padding: 0.5rem;
        margin: 0.5rem 0.25rem;
        border-width: 2px;
    }

    .form-header-inside {
        padding: 0.5rem;
        margin-bottom: 1rem;
    }

    .form-title-inside {
        font-size: 1rem !important;
    }

    .compact-order-form input,
    .compact-order-form select {
        padding: 0.6rem;
        font-size: 0.85rem;
    }

    .delivery-btn {
        padding: 0.6rem !important;
        font-size: 0.85rem !important;
    }

    .quantity-compact button {
        width: 32px;
        height: 32px;
    }

    .price-summary button {
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
    }

    /* Sections */
    .product-features,
    .product-specs,
    .product-additional {
        padding: 1.25rem;
    }

    /* Contact & Social */
    .contact-options,
    .social-links {
        grid-template-columns: 1fr;
    }

    .contact-btn,
    .social-btn {
        padding: 1.25rem;
    }

    /* Offers */
    .colors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sizes-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Link Button */
    .link-button-medium {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

header#mainHeader {
    display: none;
}

.header-content {
    display: none;
}

/* ===============================================
   END OF MOBILE CSS
   =============================================== */

    