/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.brand-logo {
    text-decoration: none;
}

.brand-text {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #27ae60 0%, #219150 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #27ae60;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #27ae60;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

.search-form {
    display: flex;
    position: relative;
}

.search-input {
    padding: 0.5rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    outline: none;
    transition: border-color 0.3s ease;
    width: 200px;
}

.search-input:focus {
    border-color: #27ae60;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #27ae60;
    border: none;
    color: white;
    padding: 0.4rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background: #219150;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.hero-slide.slide-out-left {
    transform: translateX(-100%);
}

.hero-slide.slide-out-right {
    transform: translateX(100%);
}

.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.hero-slide.active .hero-image img {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-text {
    color: white;
    max-width: 600px;
}

.animate-slide-up {
    animation: slideUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 3;
}

.hero-prev,
.hero-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(39, 174, 96, 0.8);
    border-color: #27ae60;
    transform: scale(1.1);
}

.hero-nav {
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.hero-dot:hover {
    transform: scale(1.2);
}

.hero-dot.active {
    background: #27ae60;
    border-color: #27ae60;
    box-shadow: 0 0 20px rgba(39, 174, 96, 0.5);
}

.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.hero-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #27ae60 0%, #219150 100%);
    width: 0%;
    transition: width 0.05s linear;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(39, 174, 96, 0.6);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #27ae60;
    color: white;
}

.btn-primary:hover {
    background: #219150;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.btn-outline {
    border: 2px solid #27ae60;
    color: #27ae60;
    background: transparent;
}

.btn-outline:hover {
    background: #27ae60;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

/* 3D Watch Showcase */
.watch-3d-section {
    background: linear-gradient(135deg, #a7a6a6 0%, #a8a8a8 50%, #d4caca 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.watch-3d-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.watch-3d-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.watch-3d-text {
    color: white;
}

.watch-3d-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(143deg, #157850 0%, #48ab54 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.watch-3d-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.watch-3d-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    position: relative;
}

.watch-3d-model {
    width: 100%;
    height: 100%;
    max-height: 500px;
    border-radius: 10px;
    /* background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%); */
    /* box-shadow: 
        0 0 50px rgba(212, 175, 55, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.1); */
    --poster-color: transparent;
    --progress-bar-color: #d4af37;
}

.watch-bezel {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(145deg, #d4af37 0%, #b8941f 50%, #d4af37 100%);
    position: absolute;
    top: -10px;
    left: -10px;
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.5),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.watch-dial {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, #333 0%, #1a1a1a 100%);
    position: absolute;
    top: 20px;
    left: 20px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.hour-markers {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.marker {
    position: absolute;
    background: #d4af37;
    border-radius: 2px;
}

.marker-12 {
    width: 3px;
    height: 20px;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.marker-3 {
    width: 20px;
    height: 3px;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.marker-6 {
    width: 3px;
    height: 20px;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.marker-9 {
    width: 20px;
    height: 3px;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.watch-hands {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hour-hand {
    width: 4px;
    height: 40px;
    background: #d4af37;
    position: absolute;
    top: -40px;
    left: -2px;
    border-radius: 2px;
    transform-origin: center bottom;
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.minute-hand {
    width: 2px;
    height: 60px;
    background: #fff;
    position: absolute;
    top: -60px;
    left: -1px;
    border-radius: 1px;
    transform-origin: center bottom;
    transform: rotate(120deg);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.second-hand {
    width: 1px;
    height: 70px;
    background: #ff4444;
    position: absolute;
    top: -70px;
    left: -0.5px;
    border-radius: 0.5px;
    transform-origin: center bottom;
    animation: secondHand 60s infinite linear;
    box-shadow: 0 0 5px rgba(255, 68, 68, 0.5);
}

@keyframes secondHand {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.center-dot {
    width: 8px;
    height: 8px;
    background: #d4af37;
    border-radius: 50%;
    position: absolute;
    top: -4px;
    left: -4px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.watch-crown {
    width: 12px;
    height: 20px;
    background: linear-gradient(145deg, #d4af37 0%, #b8941f 100%);
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 2px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

.watch-band {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.band-segment {
    width: 40px;
    height: 8px;
    background: linear-gradient(145deg, #2c2c2c 0%, #1a1a1a 100%);
    margin: 2px 0;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.band-segment:nth-child(1) {
    transform: translateY(-120px) rotateX(-20deg);
}

.band-segment:nth-child(2) {
    transform: translateY(-140px) rotateX(-40deg);
}

.band-segment:nth-child(3) {
    transform: translateY(120px) rotateX(20deg);
}

.band-segment:nth-child(4) {
    transform: translateY(140px) rotateX(40deg);
}

.watch-reflection {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%) scaleY(-0.3);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    opacity: 0.5;
    filter: blur(20px);
}

@media (max-width: 768px) {
    .watch-3d-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .watch-3d-text h2 {
        font-size: 2rem;
    }

    .watch-3d-container {
        height: 300px;
    }

    .watch-face {
        width: 150px;
        height: 150px;
    }

    .watch-bezel {
        width: 170px;
        height: 170px;
        top: -10px;
        left: -10px;
    }

    .watch-dial {
        width: 120px;
        height: 120px;
        top: 15px;
        left: 15px;
    }
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

.categories-section,
.featured-section,
.promo-section {
    padding: 4rem 0;
}

.categories-section {
    background: #f8f9fa;
}

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

.category-card {
    /* background: white; */
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
}

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

.category-card a {
    text-decoration: none;
    color: inherit;
}

.category-image {
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.category-content {
    padding: 1.5rem;
}

.category-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.category-content p {
    color: #666;
    line-height: 1.5;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.product-card a {
    text-decoration: none;
    color: inherit;
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

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

.view-details {
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 2px solid white;
    border-radius: 5px;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.product-model {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.availability-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.availability-badge.out_of_stock {
    background: #ffebee;
    color: #c62828;
}

.availability-badge.pre_order {
    background: #fff3e0;
    color: #ef6c00;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* Promo Section */
.promo-section {
    background: linear-gradient(135deg, #333 0%, #000 100%);
    color: white;
}

.promo-card {
    text-align: center;
    margin-bottom: 2rem;
}

.promo-card h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #27ae60;
}

.promo-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #27ae60;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #27ae60;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #27ae60;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #219150;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 2rem;
    }

    .nav-list li {
        border-bottom: 1px solid #eee;
        padding: 1rem 0;
    }

    .nav-list li:last-child {
        border-bottom: none;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

    .search-input {
        width: 150px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
    }
    .category-content
    {
        text-align:center;    
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #27ae60;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #27ae60;
    padding-bottom: 0.5rem;
}

.footer-text {
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #27ae60;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}


.filter-group{
    margin-bottom: 1rem;
}

.variant-item.current 
{
    border: 3px solid #27ae60!important;
}

.product-detail-section {
    padding: 2rem 0;
}

.breadcrumb {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.breadcrumb a {
    color: #27ae60;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: contain;
}

.image-thumbnails {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail.active {
    border-color: #27ae60;
}

.thumbnail:hover {
    border-color: #27ae60;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-model {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.product-category a {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
}

.product-price-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
}

.availability-status {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.availability-status.in_stock {
    background: #e8f5e8;
    color: #2e7d32;
}

.availability-status.out_of_stock {
    background: #ffebee;
    color: #c62828;
}

.availability-status.pre_order {
    background: #fff3e0;
    color: #ef6c00;
}

.product-description h3,
.product-features h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-description p {
    line-height: 1.6;
    color: #666;
}

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

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.features-list i {
    color: #27ae60;
    font-size: 0.9rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.color-variants {
    margin: 2rem 0;
}

.color-variants h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.variants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 1rem;
    max-width: 500px;
}

.variant-item {
    position: relative;
    /* border-radius: 8px; */
    overflow: hidden;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.variant-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.variant-item.current {
    border: 3px solid #27ae60;
}

.variant-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

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

.variant-name {
    display: block;
    padding: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    background: white;
    color: #333;
}

.current-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #27ae60;
    color: white;
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 12px;
}

.product-meta p {
    margin-bottom: 0.5rem;
    color: #666;
}

.related-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-title {
        font-size: 1.4rem;
    }
    
    .product-price {
        font-size: 1.5rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn {
        text-align: center;
    }
    
    .main-image img {
        height: 300px;
    }
    
    .variants-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.75rem;
    }
    
    .variant-item img {
        height: 187px;
    }
    
    .variant-name {
        padding: 0.3rem;
        font-size: 0.75rem;
    }
}


    /* --- Filters Section --- */
    .filters-section {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
      margin-bottom: 2.5rem;
      padding: 1.5rem 2rem;
      transition: all 0.3s ease;
    }

    /* Header */
    .filters-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
    }

    .filters-header h3 {
      margin: 0;
      font-size: 1.25rem;
      color: #222;
      font-weight: 600;
    }

    .filter-toggle {
      display: none;
      background: #f0c040;
      color: #fff;
      border: none;
      padding: 0.6rem 1.2rem;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      font-size: 0.95rem;
      transition: background 0.3s ease;
    }

    .filter-toggle:hover {
      background: #ddb420;
    }

    /* Filters Content */
    .filters-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
    }

    /* Input Groups */
    .filter-group label {
      display: block;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: #333;
      font-size: 0.95rem;
    }

    .filter-select,
    .price-input {
      width: 100%;
      padding: 0.6rem 0.75rem;
      border: 2px solid #e0e0e0;
      border-radius: 8px;
      outline: none;
      transition: border-color 0.3s ease;
      font-size: 0.95rem;
    }

    .filter-select:focus,
    .price-input:focus {
      border-color: #f0c040;
    }

    .price-inputs {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

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

    .filter-actions .btn {
      padding: 0.65rem 1.2rem;
      border-radius: 8px;
      font-size: 0.95rem;
      font-weight: 600;
      white-space: nowrap;
    }

    .btn-primary {
      background-color: #f0c040;
      color: #fff;
      border: none;
    }

    .btn-primary:hover {
      background-color: #ddb420;
    }

    .btn-outline {
      background: none;
      color: #333;
      border: 2px solid #ccc;
    }

    .btn-outline:hover {
      border-color: #999;
      color: #000;
    }

    /* --- Responsive --- */
    @media (max-width: 768px) {
      .filter-toggle {
        display: block;
        margin-top: 1rem;
        width: 100%;
        max-width: 240px;
        margin-left: auto;
        margin-right: auto;
      }

      .filters-content {
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
      }

      .filters-content.active {
        display: grid;
        max-height: 1000px;
        margin-top: 1.5rem;
      }

      .filters-content {
        grid-template-columns: 1fr;
      }

      .price-inputs {
        flex-direction: column;
        gap: 0.5rem;
      }

      .filter-actions {
        flex-direction: column;
        gap: 0.75rem;
      }

      .filter-actions .btn {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
      }
    }


    .page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem 0 3rem;
}

.breadcrumb {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.breadcrumb a {
    color: #27ae60;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.category-hero {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}

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

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    text-align: center;
}

.page-header p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.category-watches-section {
    padding: 3rem 0;
}

.results-info {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.results-info p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.product-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;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-details {
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid white;
    border-radius: 8px;
    font-size: 0.95rem;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #27ae60;
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.2);
}

.product-info {
    padding: 2rem;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-model {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 1rem;
}

.availability-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.availability-badge.pre_order {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.availability-badge.out_of_stock {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.no-results {
    text-align: center;
    padding: 5rem 2rem;
}

.no-results i {
    font-size: 4.5rem;
    color: #ddd;
    margin-bottom: 1.5rem;
}

.no-results h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #666;
    font-weight: 600;
}

.no-results p {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 2rem;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

.pagination .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.pagination span {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background: #27ae60;
    color: white;
}

.btn-primary:hover {
    background: #219150;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.btn-outline {
    border: 2px solid #27ae60;
    color: #27ae60;
    background: transparent;
}

.btn-outline:hover {
    background: #27ae60;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

/* Responsive Design Improvements */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .product-info {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 1.5rem 0 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .category-hero {
        height: 160px;
        margin-bottom: 1.5rem;
    }
    
    .category-watches-section {
        padding: 2rem 0;
    }
    
    .results-info {
        margin-bottom: 2rem;
        justify-content: center;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .product-image {
        height: 240px;
    }
    
    .product-info {
        padding: 1.25rem;
    }
    
    .product-name {
        font-size: 1.2rem;
    }
    
    .product-price {
        font-size: 1.3rem;
    }
    
    .pagination {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pagination .btn {
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 1rem 0 1.5rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .category-hero {
        height: 140px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
}

.page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    line-height: 1.5;
}

.social-section {
    margin-top: 2rem;
}

.social-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #27ae60;
}

.contact-form-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
}

.btn-large {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
}

.page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem 0 3rem;
}

.breadcrumb {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.breadcrumb a {
    color: #27ae60;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.category-hero {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.category-hero img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    text-align: center;
}

.page-header p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.category-watches-section {
    padding: 3rem 0;
}

.results-info {
    margin-bottom: 2rem;
}

.results-info p {
    color: #666;
    font-size: 1.1rem;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
}

.no-results i {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .category-hero {
        height: 150px;
    }
}