/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    text-align: center;
    font-size: 14px;
}

.promo-banner span {
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    list-style: none;
    min-width: 180px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--secondary-color);
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    padding: 8px;
    transition: var(--transition);
}

.icon-btn:hover {
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    object-fit: cover;
}

.hero-black-bg {
    background: #000;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212,175,55,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212,175,55,0.08) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-watch-image {
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-watch {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(212,175,55,0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
}

.hero-prev,
.hero-next {
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    font-size: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255,255,255,0.3);
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212,175,55,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Features Section */
.features {
    padding: 60px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* Collections Section */
.collections {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.collection-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.collection-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.collection-icon-bg {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-icon {
    font-size: 120px;
    opacity: 0.3;
    color: var(--secondary-color);
    transition: var(--transition);
}

.collection-card:hover .collection-icon {
    opacity: 0.5;
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.collection-card:hover .collection-overlay {
    opacity: 1;
}

.collection-info {
    padding: 25px;
    background: var(--white);
}

.collection-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.collection-info p {
    color: var(--text-light);
    font-size: 14px;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-preview-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-preview-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-preview-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-preview-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-preview-image.about-preview-bg {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Newsletter */
.newsletter {
    padding: 60px 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.newsletter-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 14px 30px;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

/* About Content */
.about-content {
    padding: 80px 0;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-section.reverse {
    direction: rtl;
}

.about-section.reverse > * {
    direction: ltr;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image:not(.about-image-1):not(.about-image-2):not(.about-image-3) img {
    width: 100%;
    height: auto;
    display: block;
}

/* Values */
.values {
    padding: 80px 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Contact */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 5px;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Products Section */
.products-section {
    padding: 80px 0;
}

.products-section:nth-child(even) {
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.product-card-link:hover .product-card {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.collection-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.collection-card-link:hover .collection-card {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product-icon-placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-icon-placeholder[data-image-url]:not([data-image-url=""]) {
    background-image: var(--product-bg-image);
}

.product-icon {
    font-size: 100px;
    opacity: 0.3;
    color: var(--secondary-color);
    transition: var(--transition);
}

.product-card:hover .product-icon {
    opacity: 0.5;
    transform: scale(1.1);
}

.product-icon-placeholder[data-image-url]:not([data-image-url=""]) .product-icon {
    display: none;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-color);
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transform: translateX(-100%);
        transition: var(--transition);
        gap: 0;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-item {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .collections-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .about-preview-content,
    .about-section,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-section.reverse {
        direction: ltr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 400px;
    }

    .hero-title {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }
}

/* Hero Watch Styling */
.hero-watch-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.hero-watch-icon {
    font-size: 150px;
    opacity: 0.4;
    color: var(--secondary-color);
    filter: drop-shadow(0 15px 40px rgba(212,175,55,0.5));
    animation: float 3s ease-in-out infinite;
    transition: var(--transition);
}

.hero-watch-icon:hover {
    opacity: 0.6;
    transform: scale(1.1);
}

.hero-watch {
    max-width: 350px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(212,175,55,0.4));
    transition: transform 0.3s ease;
}

.hero-watch:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-watch {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .hero-watch {
        max-width: 200px;
    }
}

/* Collection Images - Şık Pattern Backgrounds */
.collection-watch-male {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%),
                radial-gradient(circle at center, rgba(212,175,55,0.2) 0%, transparent 70%);
    background-size: 100% 100%, cover;
    position: relative;
}

.collection-watch-male::before {
    content: '⌚';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    opacity: 0.15;
    color: var(--secondary-color);
}

.collection-watch-female {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%),
                radial-gradient(circle at center, rgba(212,175,55,0.18) 0%, transparent 70%);
    background-size: 100% 100%, cover;
    position: relative;
}

.collection-watch-female::before {
    content: '💎';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    opacity: 0.15;
    color: var(--secondary-color);
}

.collection-glasses-male {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%),
                radial-gradient(circle at 30% 30%, rgba(212,175,55,0.15) 0%, transparent 60%);
    background-size: 100% 100%, cover;
    position: relative;
}

.collection-glasses-male::before {
    content: '🕶️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    opacity: 0.15;
    color: var(--secondary-color);
}

.collection-glasses-female {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #2a2a2a 100%),
                radial-gradient(circle at 70% 30%, rgba(212,175,55,0.15) 0%, transparent 60%);
    background-size: 100% 100%, cover;
    position: relative;
}

.collection-glasses-female::before {
    content: '✨';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    opacity: 0.15;
    color: var(--secondary-color);
}

/* Product Images - Elegant Gradients */
.product-watch-1 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%),
                radial-gradient(ellipse at center, rgba(212,175,55,0.25) 0%, transparent 70%);
    background-size: 100% 100%, cover;
    position: relative;
}

.product-watch-1::after {
    content: '⌚';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    opacity: 0.2;
    color: var(--secondary-color);
}

.product-watch-2 {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%),
                radial-gradient(ellipse at center, rgba(212,175,55,0.22) 0%, transparent 70%);
    background-size: 100% 100%, cover;
    position: relative;
}

.product-watch-2::after {
    content: '⌚';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(15deg);
    font-size: 80px;
    opacity: 0.2;
    color: var(--secondary-color);
}

.product-watch-3 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%),
                radial-gradient(ellipse at center, rgba(212,175,55,0.2) 0%, transparent 70%);
    background-size: 100% 100%, cover;
    position: relative;
}

.product-watch-3::after {
    content: '⌚';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    font-size: 80px;
    opacity: 0.2;
    color: var(--secondary-color);
}

.product-watch-4 {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #2a2a2a 100%),
                radial-gradient(ellipse at center, rgba(212,175,55,0.23) 0%, transparent 70%);
    background-size: 100% 100%, cover;
    position: relative;
}

.product-watch-4::after {
    content: '⌚';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    opacity: 0.2;
    color: var(--secondary-color);
}

.product-watch-female-1,
.product-watch-female-2,
.product-watch-female-3,
.product-watch-female-4 {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%),
                radial-gradient(ellipse at center, rgba(212,175,55,0.2) 0%, transparent 70%);
    background-size: 100% 100%, cover;
    position: relative;
}

.product-watch-female-1::after,
.product-watch-female-2::after,
.product-watch-female-3::after,
.product-watch-female-4::after {
    content: '💎';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    opacity: 0.2;
    color: var(--secondary-color);
}

.product-glasses-male-1,
.product-glasses-male-2,
.product-glasses-male-3,
.product-glasses-male-4 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%),
                radial-gradient(ellipse at center, rgba(212,175,55,0.18) 0%, transparent 70%);
    background-size: 100% 100%, cover;
    position: relative;
}

.product-glasses-male-1::after,
.product-glasses-male-2::after,
.product-glasses-male-3::after,
.product-glasses-male-4::after {
    content: '🕶️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    opacity: 0.2;
    color: var(--secondary-color);
}

.product-glasses-female-1,
.product-glasses-female-2,
.product-glasses-female-3,
.product-glasses-female-4 {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%),
                radial-gradient(ellipse at center, rgba(212,175,55,0.2) 0%, transparent 70%);
    background-size: 100% 100%, cover;
    position: relative;
}

.product-glasses-female-1::after,
.product-glasses-female-2::after,
.product-glasses-female-3::after,
.product-glasses-female-4::after {
    content: '✨';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    opacity: 0.2;
    color: var(--secondary-color);
}

/* About Preview Background */
.about-preview-bg {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%),
                radial-gradient(circle at center, rgba(212,175,55,0.1) 0%, transparent 70%);
    background-size: 100% 100%, cover;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-preview-content-overlay {
    text-align: center;
    z-index: 2;
}

.about-preview-icon {
    font-size: 100px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.about-preview-content-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--primary-color);
    opacity: 0.8;
}

/* About Image Backgrounds */
.about-image-1,
.about-image-2,
.about-image-3 {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%),
                radial-gradient(circle at center, rgba(212,175,55,0.12) 0%, transparent 70%);
    background-size: 100% 100%, cover;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-image-content {
    text-align: center;
    z-index: 2;
}

.about-image-icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.about-image-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--primary-color);
    opacity: 0.8;
}

/* Contact Link Styling */
.contact-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-link:hover {
    color: #b8941f;
    text-decoration: underline;
}

.online-store-link {
    font-size: 18px;
    font-weight: 700;
}

/* Online Store Banner */
.online-store-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
    color: var(--white);
    margin: 40px 0;
}

.online-store-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: center;
}

.online-store-icon {
    font-size: 80px;
    opacity: 0.9;
}

.online-store-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 15px;
}

.online-store-text p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .online-store-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .online-store-icon {
        font-size: 60px;
    }
    
    .online-store-text h2 {
        font-size: 28px;
    }
    
    .online-store-text p {
        font-size: 16px;
    }
}

.footer-section a[href^="tel:"] {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a[href^="tel:"]:hover,
.footer-section a[href^="mailto:"]:hover,
.footer-section a[href^="https://wa.me"]:hover {
    color: #b8941f;
    text-decoration: underline;
}

.footer-section a[href^="mailto:"] {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a[href^="https://wa.me"] {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Enhanced Product Card Hover Effects */
.product-card:hover .product-image::after {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Collection Card Enhanced Hover */
.collection-card:hover .collection-image::before {
    opacity: 0.25;
    transform: translate(-50%, -50%) scale(1.1);
}

