/* Reset ve Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.loader.hide {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #333;
    border-top: 3px solid #00ff88;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
.header {
    background: #1a1a1a;
    border-bottom: 1px solid #333;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: contain;
    filter: drop-shadow(0 3px 10px rgba(0,255,136,0.4));
    transition: transform 0.3s ease;
}

.logo-link:hover .logo-img {
    transform: scale(1.1);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.account-menu {
    position: relative;
}

.account-text {
    color: #fff;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.account-text i {
    font-size: 0.9rem;
    opacity: 0.8;
}

.account-text:hover {
    background: #333;
}

.account-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.account-menu:hover .account-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.account-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #333;
}

.account-dropdown a:last-child {
    border-bottom: none;
}

.account-dropdown a:hover {
    background: #333;
    color: #00ff88;
}

.dropdown-divider {
    height: 1px;
    background: #333;
    margin: 0.5rem 0;
    border: none;
}

.cart-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-count {
    background: #00ff88;
    color: #000;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.cart-text {
    color: #ccc;
    font-size: 0.9rem;
}

.cart-btn {
    background: #00ff88;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cart-btn:hover {
    background: #00cc6a;
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Navigation */
.main-nav {
    background: #111;
    border-top: 1px solid #333;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    padding: 1rem 0;
}

.nav-list a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #00ff88;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: #333;
    color: #00ff88;
}

.close-nav {
    display: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 170px 0 80px;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23333" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23333" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23333" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.limited-stock {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.stock-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.limited-stock h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
}

.hero-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.category-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,255,136,0.1), transparent);
    transition: left 0.5s;
}

.category-item:hover::before {
    left: 100%;
}

.category-item:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0,255,136,0.2);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #000;
}

.category-item h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-item p {
    color: #00ff88;
    font-weight: 500;
}

.cta-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.cta-section h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
}

.cta-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: scale(1.1) rotate(45deg);
    box-shadow: 0 10px 30px rgba(0,255,136,0.4);
}

/* Products Section */
.products-section {
    background: #0a0a0a;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #00ff88;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.section-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.tab-btn {
    background: transparent;
    border: 2px solid #333;
    color: #ccc;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    border-color: #00ff88;
    color: #00ff88;
    background: rgba(0,255,136,0.1);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.products-grid.hidden {
    display: none;
}

.product-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 15px 40px rgba(0,255,136,0.2);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-image {
    position: relative;
    height: 200px;
    background: #111;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-duplicate {
    position: absolute;
    top: 0;
    right: -50px;
    width: 50px;
    height: 100%;
    opacity: 0.3;
    overflow: hidden;
}

.product-duplicate img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-category {
    background: #333;
    color: #00ff88;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin: 1rem;
    border-radius: 4px;
}

.product-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 1rem 1rem;
    line-height: 1.4;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 1rem 1rem;
}

.current-price {
    color: #00ff88;
    font-size: 1.25rem;
    font-weight: 700;
}

.old-price {
    color: #666;
    font-size: 1rem;
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-top: 1px solid #333;
}

.reviews {
    color: #ccc;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.reviews:hover {
    color: #00ff88;
}

.unit {
    color: #00ff88;
    font-weight: 500;
    font-size: 0.9rem;
}

/* New Arrivals Section */
.new-arrivals-section {
    background: #111;
    padding: 80px 0;
}

.section-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    background: #0a0a0a;
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0,255,136,0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #000;
}

.service-item h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-item p {
    color: #ccc;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #111;
    border-top: 1px solid #333;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand {
    
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: contain;
}

.footer-brand p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00ff88;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #666;
}

.payment-methods img {
    height: 30px;
    opacity: 0.7;
}

.payment-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.payment-icons i {
    font-size: 1.5rem;
    color: #00ff88;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #1a1a1a;
    border-left: 1px solid #333;
    z-index: 9999;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #333;
}

.cart-header h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
}

.close-cart {
    background: none;
    border: none;
    color: #ccc;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-cart:hover {
    color: #fff;
}

.cart-content {
    padding: 1.5rem;
}

.cart-summary {
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: #ccc;
}

.summary-row.total {
    border-top: 1px solid #333;
    padding-top: 0.75rem;
    font-weight: 600;
    color: #fff;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,255,136,0.4);
}

.checkout-btn:disabled {
    background: #333;
    color: #666;
    cursor: not-allowed;
}

/* Social Contact Buttons */
.social-contact-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1001;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: float-social 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.social-btn:hover::before {
    left: 100%;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    animation-delay: 0s;
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.telegram-btn {
    background: linear-gradient(135deg, #0088cc, #005580);
    animation-delay: 1.5s;
}

.telegram-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

@keyframes float-social {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Pulse effect for social buttons */
.social-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid;
    border-color: inherit;
    opacity: 0;
    animation: pulse-ring 2s infinite;
}

.whatsapp-btn::after {
    border-color: #25D366;
}

.telegram-btn::after {
    border-color: #0088cc;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Tools Toggle Button */
.tools-toggle {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1002;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,255,136,0.4);
    animation: pulse-glow 2s infinite;
}

.tools-toggle:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,255,136,0.6);
}

.tools-toggle.active {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    box-shadow: 0 4px 15px rgba(255,107,107,0.4);
}

@keyframes pulse-glow {
    0% { box-shadow: 0 4px 15px rgba(0,255,136,0.4); }
    50% { box-shadow: 0 4px 25px rgba(0,255,136,0.8); }
    100% { box-shadow: 0 4px 15px rgba(0,255,136,0.4); }
}

/* Tools Panel */
.tools-panel {
    position: fixed;
    top: 50%;
    right: -350px;
    transform: translateY(-50%);
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 0;
    width: 300px;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1000;
    transition: right 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.tools-panel.open {
    right: 90px;
}

.tools-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #333;
    background: #222;
    border-radius: 12px 12px 0 0;
}

.tools-header h6 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.close-tools {
    background: none;
    border: none;
    color: #ccc;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-tools:hover {
    background: #333;
    color: #fff;
}

.tool-section {
    margin: 0;
    padding: 1.5rem;
    border-bottom: 1px solid #333;
}

.tool-section:last-child {
    border-bottom: none;
}

.tool-section h6 {
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.mode-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mode-btn {
    background: #333;
    border: 1px solid #555;
    color: #ccc;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mode-btn.active,
.mode-btn:hover {
    border-color: #00ff88;
    color: #00ff88;
    background: rgba(0,255,136,0.1);
}

.mode-preview {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #555;
}

.mode-preview.light {
    background: #fff;
}

.mode-preview.dark {
    background: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .header-right {
        order: 2;
        gap: 0.5rem;
    }
    
    .logo-img {
        width: 55px;
        height: 55px;
    }
    
    .hero-section {
        padding: 140px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .featured-categories {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .social-contact-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .social-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .tools-panel {
        display: none;
    }
    
    .tools-toggle {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        padding: 0.4rem 0;
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .products-section,
    .services-section {
        padding: 60px 0;
    }
    
    .cta-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .logo-img {
        width: 55px;
        height: 55px;
    }
}

/* Dark/Light Mode */
body.light-mode {
    background: #f5f5f5;
    color: #333;
}

body.light-mode .header {
    background: #fff;
    border-bottom-color: #e0e0e0;
}

body.light-mode .main-nav {
    background: #f8f8f8;
    border-top-color: #e0e0e0;
}

body.light-mode .hero-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #e0e0e0 100%);
}

body.light-mode .products-section,
body.light-mode .services-section {
    background: #fff;
}

body.light-mode .product-card,
body.light-mode .service-item,
body.light-mode .category-item {
    background: #fff;
    border-color: #e0e0e0;
}

body.light-mode .footer {
    background: #f8f8f8;
    border-top-color: #e0e0e0;
}

body.light-mode .logo-subtitle {
    color: #333;
}

body.light-mode .footer-subtitle {
    color: #333;
}

/* RTL Support */
body.rtl {
    direction: rtl;
}

body.rtl .header-content {
    flex-direction: row-reverse;
}

body.rtl .nav-list {
    flex-direction: row-reverse;
}

body.rtl .products-grid {
    direction: rtl;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.6s ease both;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00ff88;
} 

/* Products Page Styles */
.products-page {
    background: #0a0a0a;
    padding: 170px 0 80px;
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: #ccc;
    font-size: 1.2rem;
}

.category-filter {
    margin-bottom: 3rem;
    text-align: center;
}

.category-filter h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid #333;
    color: #ccc;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,255,136,0.1), transparent);
    transition: left 0.5s;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: #00ff88;
    color: #00ff88;
    background: rgba(0,255,136,0.1);
    transform: translateY(-2px);
}

.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #00cc6a, #00aa55);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,255,136,0.4);
}

.add-to-cart-full {
    width: 100%;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.add-to-cart-full:hover {
    background: linear-gradient(135deg, #00cc6a, #00aa55);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,255,136,0.4);
}

/* No products message */
.no-products-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    margin: 2rem 0;
}

.no-products-message h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.no-products-message p {
    color: #ccc;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00cc6a, #00aa55);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,255,136,0.4);
}

.nav-list a.active {
    color: #00ff88;
    position: relative;
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #00ff88;
}

@media (max-width: 768px) {
    .products-page {
        padding: 150px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        min-width: 200px;
    }
} 

/* Auth Pages Styles */
.auth-page {
    background: #0a0a0a;
    padding: 170px 0 80px;
    min-height: 100vh;
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.auth-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-header p {
    color: #ccc;
    font-size: 1.1rem;
}

.auth-form {
    
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 1rem;
    color: #666;
    z-index: 1;
}

.input-group input {
    width: 100%;
    background: #111;
    border: 2px solid #333;
    border-radius: 8px;
    padding: 0.75rem 1rem 0.75rem 3rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #00ff88;
    background: #1a1a1a;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: #00ff88;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    color: #ccc;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    background: #333;
    border: 2px solid #555;
    border-radius: 4px;
    margin-right: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input:checked + .checkmark {
    background: #00ff88;
    border-color: #00ff88;
}

.checkbox-label input:checked + .checkmark::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.forgot-link {
    color: #00ff88;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: #00cc6a;
}

.auth-btn {
    width: 100%;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.auth-btn:hover {
    background: linear-gradient(135deg, #00cc6a, #00aa55);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,255,136,0.4);
}

.auth-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #333;
}

.auth-divider span {
    background: #1a1a1a;
    color: #666;
    padding: 0 1rem;
    position: relative;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 2px solid #333;
    border-radius: 8px;
    background: transparent;
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.google-btn:hover {
    border-color: #db4437;
    color: #db4437;
    background: rgba(219, 68, 55, 0.1);
}

.telegram-btn:hover {
    border-color: #0088cc;
    color: #0088cc;
    background: rgba(0, 136, 204, 0.1);
}

.auth-footer {
    text-align: center;
    color: #ccc;
}

.auth-footer a {
    color: #00ff88;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: #00cc6a;
}

.auth-info {
    background: #111;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-info h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.auth-info ul {
    list-style: none;
}

.auth-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.auth-info li i {
    color: #00ff88;
    font-size: 1.2rem;
    width: 20px;
}

@media (max-width: 768px) {
    .auth-page {
        padding: 150px 0 60px;
    }
    
    .auth-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .auth-card,
    .auth-info {
        padding: 1.5rem;
    }
    
    .auth-header h1 {
        font-size: 2rem;
    }
    
    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
} 

/* Register Page Additional Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.password-strength {
    margin-top: 0.5rem;
}

.strength-bar {
    width: 100%;
    height: 4px;
    background: #333;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.strength-fill {
    height: 100%;
    width: 0%;
    background: #ff4757;
    transition: all 0.3s ease;
}

.strength-text {
    font-size: 0.8rem;
    color: #666;
}

.benefits {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.benefits h4 {
    color: #00ff88;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.benefits ul {
    list-style: none;
}

.benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ccc;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.benefits li i {
    color: #00ff88;
    font-size: 1rem;
    width: 16px;
}

.checkbox-label a {
    color: #00ff88;
    text-decoration: none;
    transition: color 0.3s ease;
}

.checkbox-label a:hover {
    color: #00cc6a;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
} 

/* Alert messages */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.alert.success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.alert.error {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    color: #ff4757;
}

.alert.warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

.alert i {
    font-size: 1.1rem;
} 

/* Profile Page Styles */
.profile-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-sidebar {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 0;
    height: fit-content;
    overflow: hidden;
}

.profile-header {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #222, #1a1a1a);
    border-bottom: 1px solid #333;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #000;
}

.profile-header h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.profile-header p {
    color: #ccc;
    margin-bottom: 1rem;
}

.profile-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.profile-badge.admin {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: #fff;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid #333;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    color: #00ff88;
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-value.active {
    color: #00ff88;
}

.stat-value.inactive {
    color: #ff4757;
}

.stat-label {
    color: #ccc;
    font-size: 0.9rem;
}

.profile-menu {
    
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #333;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover,
.menu-item.active {
    background: #333;
    color: #00ff88;
}

.menu-item i {
    width: 20px;
}

.profile-content {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2rem;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.content-header {
    margin-bottom: 2rem;
}

.content-header h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.content-header p {
    color: #ccc;
}

.profile-form {
    
}

.empty-state {
    text-align: center;
    padding: 3rem;
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
}

.empty-state i {
    font-size: 3rem;
    color: #666;
    margin-bottom: 1rem;
}

.empty-state h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.empty-state p {
    color: #ccc;
    margin-bottom: 2rem;
}

.orders-list {
    
}

.order-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
}

.order-id {
    color: #00ff88;
    font-weight: 600;
    font-size: 1.1rem;
}

.order-date {
    color: #ccc;
    font-size: 0.9rem;
}

.order-status {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.order-status.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.order-status.processing {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
}

.order-status.shipped {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.order-status.delivered {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.order-status.cancelled {
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
}

.order-total {
    color: #00ff88;
    font-weight: 700;
    font-size: 1.1rem;
}

.view-all {
    text-align: center;
    margin-top: 2rem;
}

/* Orders Page Styles */
.orders-page {
    background: #0a0a0a;
    padding: 170px 0 80px;
    min-height: 100vh;
}

.status-filter {
    margin-bottom: 3rem;
    text-align: center;
}

.status-filter h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.orders-container {
    
}

.order-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.order-card:hover {
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0,255,136,0.1);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
}

.order-info-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.order-info-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.order-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.shipping-info h4,
.payment-info h4,
.order-items h4 {
    color: #00ff88;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.address-info {
    color: #ccc;
    line-height: 1.6;
}

.address-info p {
    margin-bottom: 0.5rem;
}

.payment-details {
    color: #ccc;
    line-height: 1.6;
}

.payment-details p {
    margin-bottom: 0.5rem;
}

.payment-status {
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.payment-status.paid {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.payment-status.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.payment-status.failed {
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
}

.order-items {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.items-list {
    
}

.order-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.order-item:last-child {
    margin-bottom: 0;
}

.item-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.item-info {
    flex: 1;
}

.item-info h5 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.item-details {
    display: flex;
    gap: 1rem;
    color: #ccc;
    font-size: 0.9rem;
}

.item-total {
    color: #00ff88;
    font-weight: 600;
    font-size: 1rem;
}

.order-summary {
    margin-bottom: 2rem;
}

.summary-details {
    max-width: 300px;
    margin-left: auto;
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: #ccc;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-row.total {
    border-top: 1px solid #333;
    padding-top: 0.75rem;
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
}

.summary-row .discount {
    color: #00ff88;
}

.order-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00cc6a, #00aa55);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #666;
    color: #fff;
}

.btn-secondary:hover {
    background: #777;
    transform: translateY(-2px);
}

.btn-danger {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: #fff;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #ff3742, #ff2733);
    transform: translateY(-2px);
}

.btn-info {
    background: linear-gradient(135deg, #3742fa, #2f3542);
    color: #fff;
}

.btn-info:hover {
    background: linear-gradient(135deg, #2f3542, #222);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .profile-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .profile-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .order-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .order-info-right {
        align-items: flex-start;
    }
    
    .order-actions {
        justify-content: flex-start;
    }
    
    .btn {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
} 

/* Product Detail Page Styles */
.product-detail-page {
    background: #0a0a0a;
    padding: 170px 0 80px;
    min-height: 100vh;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: #ccc;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #00ff88;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #00cc6a;
}

.breadcrumb span {
    color: #666;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.product-images {
    
}

.main-image {
    position: relative;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    
}

.product-category-tag {
    background: #333;
    color: #00ff88;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.product-info .product-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-rating .stars {
    display: flex;
    gap: 0.25rem;
}

.product-rating .stars .fa-star {
    color: #333;
    font-size: 1.2rem;
}

.product-rating .stars .fa-star.filled {
    color: #ffc107;
}

.rating-text {
    color: #ccc;
    font-size: 0.9rem;
}

.product-price-section {
    margin-bottom: 2rem;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.product-info .current-price {
    color: #00ff88;
    font-size: 2rem;
    font-weight: 700;
}

.product-info .old-price {
    color: #666;
    font-size: 1.5rem;
    text-decoration: line-through;
}

.discount-percent {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.unit-info {
    color: #ccc;
    font-size: 0.9rem;
}

.stock-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00ff88;
    margin-bottom: 2rem;
    font-weight: 500;
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid #333;
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    background: #333;
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.qty-btn:hover {
    background: #00ff88;
    color: #000;
}

.quantity-selector input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    background: #1a1a1a;
    color: #fff;
    font-weight: 600;
}

.quantity-selector input:focus {
    outline: none;
}

.add-to-cart-btn.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1;
}

.product-description {
    border-top: 1px solid #333;
    padding-top: 2rem;
}

.product-description h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product-description p {
    color: #ccc;
    line-height: 1.6;
}

/* Reviews Section Styles */
.reviews-section {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 4rem;
}

.reviews-header {
    margin-bottom: 2rem;
}

.reviews-header h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.review-summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
}

.overall-rating {
    text-align: center;
}

.rating-number {
    color: #00ff88;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin: 0.5rem 0;
}

.rating-stars .fa-star {
    color: #333;
    font-size: 1.5rem;
}

.rating-stars .fa-star.filled {
    color: #ffc107;
}

.total-reviews {
    color: #ccc;
    font-size: 0.9rem;
}

.rating-breakdown {
    
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.rating-bar span:first-child {
    color: #ccc;
    min-width: 60px;
    font-size: 0.9rem;
}

.rating-bar span:last-child {
    color: #ccc;
    min-width: 20px;
    text-align: right;
    font-size: 0.9rem;
}

.bar {
    flex: 1;
    height: 8px;
    background: #333;
    border-radius: 4px;
    overflow: hidden;
}

.bar .fill {
    height: 100%;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Add Review Form */
.add-review-section {
    border-top: 1px solid #333;
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.add-review-section h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.review-form {
    
}

.review-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.review-form .form-group {
    margin-bottom: 1.5rem;
}

.review-form label {
    display: block;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.review-form input,
.review-form textarea {
    width: 100%;
    background: #111;
    border: 2px solid #333;
    border-radius: 8px;
    padding: 0.75rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    border-color: #00ff88;
    background: #1a1a1a;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 0.25rem;
    justify-content: flex-end;
}

.rating-input input {
    display: none;
}

.rating-input label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
    transition: color 0.3s ease;
    margin-bottom: 0;
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
    color: #ffc107;
}

.submit-review-btn {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-review-btn:hover {
    background: linear-gradient(135deg, #00cc6a, #00aa55);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,255,136,0.4);
}

/* Reviews List */
.reviews-list {
    border-top: 1px solid #333;
    padding-top: 2rem;
}

.no-reviews {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.no-reviews i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.no-reviews h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.review-item {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s ease;
}

.review-item:hover {
    border-color: #555;
}

.review-item .review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    flex-shrink: 0;
}

.reviewer-details h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.review-item .review-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.review-item .review-rating .fa-star {
    color: #333;
    font-size: 0.9rem;
}

.review-item .review-rating .fa-star.filled {
    color: #ffc107;
}

.review-date {
    color: #666;
    font-size: 0.8rem;
}

.verified-purchase {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.review-item .review-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.review-text {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.admin-reply {
    background: rgba(0,255,136,0.05);
    border: 1px solid rgba(0,255,136,0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.admin-reply-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #00ff88;
    font-weight: 500;
    font-size: 0.9rem;
}

.reply-date {
    color: #666;
    font-weight: normal;
    margin-left: auto;
}

.admin-reply p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

/* Similar Products */
.similar-products-section {
    margin-bottom: 4rem;
}

.similar-products-section h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Responsive Design for Product Detail */
@media (max-width: 768px) {
    .product-detail-page {
        padding: 150px 0 60px;
    }
    
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-info .product-title {
        font-size: 2rem;
    }
    
    .product-info .current-price {
        font-size: 1.5rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .review-summary {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .review-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .review-item .review-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .rating-input {
        justify-content: center;
    }
} 

/* Cart Page Styles */
.cart-page {
    min-height: 100vh;
    padding: 2rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.page-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
    max-width: 500px;
    margin: 2rem auto;
}

.empty-cart-icon {
    font-size: 4rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.empty-cart h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.empty-cart p {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.shop-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.shop-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

/* Cart Content */
.cart-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    margin-top: 2rem;
}

.cart-main {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
    padding: 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.section-header h2 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
}

.clear-cart-btn {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.clear-cart-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

/* Cart Items */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr 120px 100px 50px;
    gap: 1rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.cart-item:hover {
    border-color: rgba(0, 255, 136, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.item-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 136, 0.2);
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.item-name {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.item-price {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.unit-price {
    color: #00ff88;
    font-weight: 600;
    font-size: 1rem;
}

.price-label {
    color: #999;
    font-size: 0.8rem;
}

/* Quantity Controls */
.item-quantity {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quantity-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.qty-btn {
    background: rgba(0, 255, 136, 0.1);
    border: none;
    color: #00ff88;
    width: 30px;
    height: 35px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: bold;
}

.qty-btn:hover {
    background: rgba(0, 255, 136, 0.2);
}

.qty-input {
    background: transparent;
    border: none;
    color: #fff;
    text-align: center;
    width: 50px;
    height: 35px;
    outline: none;
    font-size: 0.9rem;
}

.update-btn {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    border: none;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.update-btn:hover {
    transform: scale(1.05);
}

.item-total {
    text-align: right;
}

.total-price {
    color: #00ff88;
    font-weight: 700;
    font-size: 1.1rem;
}

.item-actions {
    display: flex;
    justify-content: center;
}

.remove-btn {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

/* Cart Summary */
.cart-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.cart-summary {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
    padding: 2rem;
}

.cart-summary h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    padding-bottom: 1rem;
}

.summary-details {
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

.summary-row.total {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(0, 255, 136, 0.3);
}

.summary-row.total span:last-child {
    color: #00ff88;
    font-size: 1.3rem;
}

.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.checkout-btn {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

.checkout-btn:disabled {
    background: #333;
    color: #666;
    cursor: not-allowed;
}

.continue-shopping {
    color: #ccc;
    text-decoration: none;
    text-align: center;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.continue-shopping:hover {
    border-color: rgba(0, 255, 136, 0.5);
    color: #00ff88;
}

/* Coupon Section */
.coupon-section {
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.coupon-section h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.coupon-form {
    display: flex;
    gap: 0.5rem;
}

.coupon-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem;
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
}

.coupon-input:focus {
    border-color: rgba(0, 255, 136, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.apply-coupon-btn {
    background: linear-gradient(135deg, #333, #555);
    color: #fff;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.apply-coupon-btn:hover {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
}

/* Security Info */
.security-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ccc;
    font-size: 0.9rem;
}

.security-item i {
    color: #00ff88;
    width: 16px;
    text-align: center;
}

/* Cart Button Active State */
.cart-btn.active {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cart-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cart-item {
        grid-template-columns: 60px 1fr 80px;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .item-quantity,
    .item-total {
        grid-column: 2 / -1;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .item-actions {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    
    .cart-item {
        position: relative;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .page-title {
        font-size: 2rem;
    }
}

/* Checkout Page Styles */
.checkout-page {
    min-height: 100vh;
    padding: 170px 0 80px;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    margin-top: 2rem;
}

.checkout-main {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
    padding: 2rem;
}

.checkout-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.checkout-section h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkout-section h2 i {
    color: #00ff88;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(0, 255, 136, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-method {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.payment-method.active {
    border-color: rgba(0, 255, 136, 0.5);
    background: rgba(0, 255, 136, 0.1);
}

.payment-method input[type="radio"] {
    display: none;
}

.payment-method label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    margin: 0;
}

.payment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #26a17b, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.payment-info h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.payment-info p {
    color: #ccc;
    margin: 0;
}

.crypto-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    font-size: 0.9rem;
}

.info-item i {
    color: #00ff88;
}

.place-order-section {
    text-align: center;
    margin-top: 2rem;
}

.place-order-btn {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

.place-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.5);
}

/* Checkout Sidebar */
.checkout-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.order-summary {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
    padding: 2rem;
}

.order-summary h3 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    padding-bottom: 1rem;
}

.order-items {
    margin-bottom: 2rem;
    max-height: 400px;
    overflow-y: auto;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.order-item:last-child {
    margin-bottom: 0;
}

.order-item .item-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.order-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item .item-details {
    flex: 1;
}

.order-item .item-details h4 {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.order-item .item-quantity {
    color: #ccc;
    font-size: 0.8rem;
}

.order-item .item-total {
    color: #00ff88;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Crypto Payment Page Styles */
.crypto-payment-page {
    min-height: 100vh;
    padding: 170px 0 80px;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.crypto-payment-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    margin-top: 2rem;
}

.payment-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.order-info-card,
.payment-instructions,
.payment-confirmation {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
    padding: 2rem;
}

.order-info-card h2,
.payment-instructions h2,
.payment-confirmation h2 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.order-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row span:last-child {
    color: #00ff88;
    font-weight: 600;
}

.instruction-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #26a17b, #128c7e);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #ccc;
    margin: 0;
}

.confirmation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.confirmation-form .form-group small {
    color: #999;
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.confirm-payment-btn {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.confirm-payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

/* Payment Sidebar */
.payment-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.qr-code-card,
.address-card,
.amount-card,
.timer-card,
.help-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
}

.qr-code-card h3,
.address-card h3,
.amount-card h3,
.timer-card h3,
.help-card h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qr-code-container {
    text-align: center;
    margin-bottom: 1rem;
}

.qr-help {
    color: #ccc;
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
}

.address-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.address-text {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    color: #fff;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.8rem;
    word-break: break-all;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.copy-btn {
    background: linear-gradient(135deg, #333, #555);
    color: #fff;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
}

.copy-btn:hover {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
}

.amount-display {
    text-align: center;
    margin-bottom: 1rem;
}

.btc-amount {
    color: #00ff88;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Monaco', 'Courier New', monospace;
    margin-bottom: 0.5rem;
}

.try-amount {
    color: #ccc;
    font-size: 1rem;
}

.copy-amount {
    margin-top: 1rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-family: 'Monaco', 'Courier New', monospace;
}

.time-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.time-value {
    color: #00ff88;
    font-size: 1.5rem;
    font-weight: 700;
}

.time-label {
    color: #ccc;
    font-size: 0.7rem;
    margin-top: 0.25rem;
}

.time-separator {
    color: #00ff88;
    font-size: 1.5rem;
    font-weight: 700;
}

.timer-warning {
    color: #ff6b6b;
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.help-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.help-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ccc;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.help-list li i {
    color: #00ff88;
    font-size: 0.8rem;
}

.help-contact {
    text-align: center;
}

.help-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.help-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .checkout-content,
    .crypto-payment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .order-items {
        max-height: 300px;
    }
    
    .instruction-steps {
        gap: 1rem;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    
    .time-segment {
        padding: 0.5rem;
    }
    
    .time-value {
        font-size: 1.2rem;
    }
    
    .crypto-info {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Cart Sidebar Backdrop */
.cart-sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998; /* Z-index'i artırdım */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-sidebar-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Cart Items in Sidebar */
.cart-items {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #333;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: #222;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h5 {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.cart-item-price {
    color: #00ff88;
    font-weight: 600;
    font-size: 0.9rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.qty-btn {
    width: 30px;
    height: 30px;
    background: #333;
    border: 1px solid #555;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: #00ff88;
    color: #000;
}

.qty {
    color: #fff;
    font-weight: 500;
    min-width: 20px;
    text-align: center;
}

.cart-item-total {
    color: #00ff88;
    font-weight: 600;
    font-size: 1rem;
}

.remove-item {
    background: none;
    border: none;
    color: #ff6b6b;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.remove-item:hover {
    background: rgba(255, 107, 107, 0.1);
    transform: scale(1.1);
}

.empty-cart {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.empty-cart p {
    margin: 0;
}

/* Close Navigation Button */
.close-nav {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
}

.close-nav:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Main Navigation Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #0a0a0a;
        z-index: 9999;
        transition: left 0.3s ease;
        overflow-y: auto;
        border-bottom: none;
        border-top: none;
    }
    
    .main-nav.open {
        left: 0;
    }
    
    .main-nav .container {
        height: 100%;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        max-width: none;
        margin: 0;
    }
    
    .close-nav {
        display: flex;
        align-self: flex-end;
        margin-bottom: 2rem;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .nav-list li {
        border-bottom: 1px solid #333;
        width: 100%;
    }
    
    .nav-list li:last-child {
        border-bottom: none;
    }
    
    .nav-list > li > a {
        padding: 1.5rem 0;
        font-size: 1.1rem;
        color: #ccc;
        text-decoration: none;
        display: block;
        transition: color 0.3s ease;
        width: 100%;
    }
    
    .nav-list > li > a:hover {
        color: #00ff88;
    }
    
    .dropdown {
        position: relative;
    }
    
    .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown-menu {
        position: static !important;
        background: #1a1a1a;
        box-shadow: none;
        border-radius: 0;
        border: none;
        padding: 0;
        margin-left: 1rem;
        margin-top: 0.5rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: auto;
        display: block;
        min-width: auto;
    }
    
    .dropdown-menu a {
        padding: 1rem 0;
        font-size: 1rem;
        border-bottom: 1px solid #333;
        color: #999;
    }
    
    .dropdown-menu a:hover {
        color: #00ff88;
        background: transparent;
    }
}

/* Mobile header additional styles */
@media (max-width: 768px) {
    .header-content {
        padding: 0.75rem 0;
    }
    
    .logo-img {
        height: 40px;
        width: auto;
    }
    
    .account-menu .account-text {
        font-size: 0.9rem;
    }
    
    .cart-section {
        gap: 0.5rem;
    }
    
    .cart-info {
        gap: 0.25rem;
    }
    
    .cart-text {
        font-size: 0.8rem;
    }
    
    .cart-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .account-dropdown {
        position: absolute;
        right: 0;
        width: 200px;
        max-width: calc(100vw - 2rem);
    }
}

/* Review Images Styles */
.review-images {
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 1px solid #333;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
    max-width: 400px;
}

.review-image-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #333;
}

.review-image-item:hover {
    border-color: #00ff88;
    transform: scale(1.05);
}

.review-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.review-image-item:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-image-item:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    color: #00ff88;
    font-size: 1.2rem;
}

/* Image Modal Styles */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 2rem;
}

.image-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.image-modal .modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal .modal-content img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.image-modal .modal-close {
    position: absolute;
    top: -40px;
    right: -40px;
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.image-modal .modal-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

/* Mobile responsive for review images */
@media (max-width: 768px) {
    .images-grid {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
        gap: 0.25rem;
        max-width: 300px;
    }
    
    .image-modal {
        padding: 1rem;
    }
    
    .image-modal .modal-close {
        top: -30px;
        right: -30px;
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* WhatsApp Contact Page Styles */
.whatsapp-contact-page {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
}

.whatsapp-content {
    max-width: 1000px;
    margin: 0 auto;
}

.whatsapp-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.whatsapp-icon {
    display: inline-block;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #25d366, #20ba5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon i {
    font-size: 3rem;
    color: white;
}

.whatsapp-hero h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.whatsapp-hero p {
    color: #ccc;
    font-size: 1.1rem;
}

.whatsapp-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #25d366;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
}

.info-card i {
    font-size: 2.5rem;
    color: #25d366;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-card p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
    color: #ccc;
}

.info-card ul li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.info-card ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #25d366;
    font-weight: bold;
}

.whatsapp-actions {
    text-align: center;
    margin-bottom: 3rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #25d366, #20ba5a);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #20ba5a, #1da851);
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

.help-text {
    color: #999;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.quick-messages {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
}

.quick-messages h3 {
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.quick-msg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.quick-msg-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: #333;
    border: 1px solid #444;
    border-radius: 12px;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.quick-msg-btn:hover {
    background: #25d366;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.quick-msg-btn i {
    font-size: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-hero h1 {
        font-size: 2rem;
    }
    
    .whatsapp-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .whatsapp-icon i {
        font-size: 2.5rem;
    }
    
    .whatsapp-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .quick-msg-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .quick-msg-btn {
        padding: 1rem;
    }
    
    .whatsapp-btn.large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}