﻿/*
Theme Name: ExactClone
Theme URI: https://exactclonewatch.com
Author: Codex
Description: Premium super clone watches store - matching design for exactclonewatch.com
Version: 2.0.0
License: GPL v2 or later
Text Domain: exactclone
*/

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

:root {
    --color-white: #ffffff;
    --color-bg: #f8f8f8;
    --color-bg-alt: #ffffff;
    --color-dark: #0b3b2a;
    --color-dark-light: #0d4635;
    --color-gold: #a88b5c;
    --color-gold-light: #c4a46c;
    --color-text: #333333;
    --color-text-muted: #666666;
    --color-text-light: #777777;
    --color-border: #e0e0e0;
    --color-border-light: #f0f0f0;
    --color-accent: #0b3b2a;
    --font-heading: "Playfair Display", Georgia, serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s ease;
    --max-width: 1280px;
    --header-height: 80px;
    --topbar-height: 40px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1.3;
}
h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
a { color: var(--color-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-gold); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* === Top Bar === */
.top-bar {
    background: var(--color-dark);
    color: var(--color-white);
    height: var(--topbar-height);
    line-height: var(--topbar-height);
    font-size: 0.8rem;
    text-align: center;
    position: relative;
    z-index: 1001;
}
.top-bar span { margin: 0 1.5rem; }
.top-bar a { color: var(--color-gold-light); }
.top-bar a:hover { color: var(--color-white); }

/* === Header === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition);
}
.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Logo */
.site-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-dark);
    letter-spacing: 1px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.site-logo span { color: var(--color-gold); font-weight: 300; }

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.header-icons a, .header-icons button {
    color: var(--color-dark);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    transition: color var(--transition);
    position: relative;
}
.header-icons a:hover, .header-icons button:hover { color: var(--color-gold); }
.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--color-gold);
    color: var(--color-white);
    font-size: 0.6rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* === Sliding Menu (Drawer) === */
.sliding-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.sliding-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
.sliding-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background: var(--color-white);
    z-index: 1000;
    overflow-y: auto;
    transition: left 0.3s ease;
    padding: 2rem;
}
.sliding-menu.active { left: 0; }
.sliding-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text);
}
.sliding-menu h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin: 1.5rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border-light);
}
.sliding-menu h4:first-of-type { margin-top: 0; }
.sliding-menu ul {
    list-style: none;
}
.sliding-menu ul li { margin-bottom: 0.25rem; }
.sliding-menu ul a {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border-light);
}
.sliding-menu ul a:hover { color: var(--color-gold); padding-left: 0.5rem; }

/* === Hero Section === */
.hero {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 50%, #f0f5f2 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(168,139,92,0.05) 0%, transparent 60%);
}
.hero .container { position: relative; z-index: 1; }
.hero-badge {
    display: inline-block;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 0.4rem 1.2rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-size: 3.5rem;
    max-width: 800px;
    margin: 0 auto 1rem;
}
.hero-title span { color: var(--color-gold); }
.hero-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}
.btn-primary {
    background: var(--color-dark);
    color: var(--color-white);
}
.btn-primary:hover { background: var(--color-dark-light); color: var(--color-white); transform: translateY(-1px); }
.btn-gold {
    background: var(--color-gold);
    color: var(--color-white);
}
.btn-gold:hover { background: var(--color-gold-light); color: var(--color-white); transform: translateY(-1px); }
.btn-outline {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}
.btn-outline:hover { background: var(--color-dark); color: var(--color-white); }

/* === Section Styles === */
.section { padding: 5rem 0; }
.section-alt { background: var(--color-bg); }
.section-dark { background: var(--color-dark); color: var(--color-white); }
.section-dark h2, .section-dark h3 { color: var(--color-white); }
.section-dark .section-subtitle { color: var(--color-gold-light); }
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-subtitle {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}
.section-title {
    font-size: 2.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* === Product Grid === */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}
.product-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}
.product-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: #fafafa;
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 0.25rem 0.7rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.product-card-badge.sale { background: #c0392b; }
.product-card-body { padding: 1rem 1.25rem 1.25rem; }
.product-card-title {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    font-family: var(--font-body);
    color: var(--color-text);
}
.product-card-price {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-dark);
}

/* === Brand Grid === */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}
.brand-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all var(--transition);
}
.brand-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.brand-card img {
    height: 40px;
    margin: 0 auto 0.75rem;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity var(--transition);
}
.brand-card:hover img { opacity: 1; }
.brand-card h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text);
    font-family: var(--font-body);
    letter-spacing: 1px;
}
.brand-card span {
    font-size: 0.7rem;
    color: var(--color-text-light);
}

/* === Feature Icons Row === */
.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.feature-item .feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: rgba(168,139,92,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}
.feature-item h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.feature-item p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* === Trust/Shipping Row === */
.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}
.trust-item {
    padding: 2rem 1.5rem;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
}
.trust-item .trust-icon {
    color: var(--color-gold);
    margin-bottom: 1rem;
}
.trust-item h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.trust-item p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* === Testimonials === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    padding: 2rem;
}
.testimonial-stars { color: #f5a623; margin-bottom: 1rem; font-size: 1rem; }
.testimonial-text {
    font-size: 0.9rem;
    color: var(--color-text);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}
.testimonial-author {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-dark);
}
.testimonial-date {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

/* === Two-Column Section === */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.two-col-image img {
    width: 100%;
    border-radius: 2px;
}
.two-col-text h2 { margin-bottom: 1.5rem; }
.two-col-text p { color: var(--color-text-muted); margin-bottom: 1rem; line-height: 1.8; }
.two-col-text ul { list-style: none; padding: 0; }
.two-col-text ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border-light);
    font-size: 0.9rem;
}
.two-col-text ul li::before {
    content: "\2713";
    color: var(--color-gold);
    margin-right: 0.75rem;
    font-weight: bold;
}

/* === Footer === */
.site-footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}
.footer-col h4 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
    font-weight: 600;
}
.footer-col p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    transition: all var(--transition);
}
.footer-col ul a:hover { color: var(--color-gold-light); padding-left: 4px; }
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: background var(--transition);
}
.footer-social a:hover { background: var(--color-gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}
.footer-payments { display: flex; gap: 0.75rem; align-items: center; }

/* === FAQ / Content Page === */
.content-page {
    padding: 3rem 0 5rem;
    max-width: 800px;
    margin: 0 auto;
}
.content-page h2 { margin: 2rem 0 1rem; }
.content-page h3 { margin: 1.5rem 0 0.75rem; font-size: 1.2rem; }
.content-page p { color: var(--color-text-muted); margin-bottom: 1rem; line-height: 1.8; }
.content-page ul, .content-page ol { margin: 0 0 1.5rem 1.5rem; }
.content-page li { color: var(--color-text-muted); margin-bottom: 0.5rem; }

/* === Popup / Modal === */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.popup-overlay.active { display: flex; }
.popup-box {
    background: var(--color-white);
    max-width: 500px;
    width: 90%;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
}
.popup-close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text);
}
.popup-box h3 { margin-bottom: 1rem; }
.popup-box p { color: var(--color-text-muted); margin-bottom: 1.5rem; font-size: 0.9rem; }

/* === Responsive === */
@media (max-width: 1024px) {
    .two-col { grid-template-columns: 1fr; gap: 2rem; }
    .features-row { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .hero { padding: 3rem 0; }
    .hero-title { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .top-bar span { display: block; margin: 0; }
    .top-bar { height: auto; padding: 0.5rem; line-height: 1.5; }
    .features-row { grid-template-columns: 1fr; }
    .trust-row { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
