.cta-content h2 {
        font-size: 22px;
    }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

/* Contact Content Section */
.contact-content {
    padding: 80px 0;
    background-color: white;
}

.contact-main {
    margin-bottom: 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

/* Contact Form Section */
.contact-form-section h2 {
    font-size: 28px;
    font-weight: 300;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-form-section > p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 100%;
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: #333;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #555;
}

/* Contact Info Section */
.contact-info-section h2 {
    font-size: 28px;
    font-weight: 300;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-info-section > p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-info-items {
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.contact-info-item:hover {
    background-color: #f5f5f5;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #e8e3d8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: #666;
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.contact-details a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #333;
}

/* Social Section */
.social-section {
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.social-section h4 {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
}

.social-links-contact {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #333;
    color: white;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Map Section */
.map-section {
    margin-top: 80px;
    padding: 80px 0 0 0;
    border-top: 1px solid #eee;
}

.map-section h2 {
    font-size: 32px;
    font-weight: 300;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-align: center;
}

.map-section > p {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.map-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .contact-grid {
        gap: 60px;
    }
    
    .form-row {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .contact-content {
        padding: 60px 0;
    }
    
    .contact-main {
        margin-bottom: 60px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form-section h2,
    .contact-info-section h2 {
        font-size: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-info-item {
        padding: 15px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .map-section {
        margin-top: 60px;
        padding-top: 60px;
    }
    
    .map-section h2 {
        font-size: 26px;
    }
    
    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-form-section h2,
    .contact-info-section h2 {
        font-size: 22px;
    }
    
    .contact-form-section > p,
    .contact-info-section > p {
        font-size: 15px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .submit-btn {
        padding: 12px 30px;
        font-size: 13px;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
        align-self: center;
    }
    
    .social-links-contact {
        justify-content: center;
    }
    
    .map-section h2 {
        font-size: 22px;
    }
    
    .map-section > p {
        font-size: 15px;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

/* ==========================================================================
   Stores Page Styles
   ========================================================================== */

/* Stores Content Section */
.stores-content {
    padding: 80px 0;
    background-color: white;
}

.map-instructions {
    text-align: center;
    margin-bottom: 50px;
}

.map-instructions h2 {
    font-size: 32px;
    font-weight: 300;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.map-instructions p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Turkey Map */
.turkey-map-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

/* Turkey Map */
.turkey-map-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.map-image-container {
    position: relative;
    max-width: 900px;
    width: 100%;
}

.turkey-map-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.store-marker {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.store-marker:hover {
    transform: scale(1.15);
}

.store-marker.active {
    transform: scale(1.25);
    animation: markerPulse 2s infinite;
}

@keyframes markerPulse {
    0% { transform: scale(1.25); }
    50% { transform: scale(1.35); }
    100% { transform: scale(1.25); }
}

.marker-icon {
    width: 32px;
    height: 32px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    position: relative;
}

.marker-icon svg {
    transform: rotate(45deg);
}

.marker-icon.purple {
    background-color: #8e44ad;
}

.marker-icon.light-blue {
    background-color: #3498db;
}

.marker-icon.red {
    background-color: #e74c3c;
}

.marker-icon.orange {
    background-color: #f39c12;
}

.marker-label {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0,0,0,0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.store-marker:hover .marker-label {
    opacity: 1;
}

/* Store Legend */
.store-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #f8f9fa;
    border-radius: 20px;
    font-size: 14px;
    color: #333;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
}

/* Store Details */
.store-details-container {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px solid #e9ecef;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.store-details-container h3 {
    font-size: 28px;
    font-weight: 300;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.store-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.store-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.store-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #3498db, #27ae60, #f39c12);
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.store-name {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
    padding-top: 10px;
}

.store-info {
    space-y: 15px;
}

.store-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.store-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    color: #666;
    flex-shrink: 0;
    margin-top: 2px;
}

.store-text {
    flex: 1;
}

.store-text strong {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
    font-size: 14px;
}

.store-text span {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.store-text a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.store-text a:hover {
    color: #333;
}

.store-manager {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.store-manager strong {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.store-manager span {
    color: #666;
    font-size: 13px;
}

/* Empty State */
.no-stores {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-stores h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Stores Page Responsive */
@media (max-width: 768px) {
    .stores-content {
        padding: 60px 0;
    }
    
    .map-instructions h2 {
        font-size: 26px;
    }
    
    .map-instructions p {
        font-size: 15px;
    }
    
    .turkey-map-container {
        padding: 30px 15px;
        margin-bottom: 30px;
    }
    
    .store-legend {
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .legend-item {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .store-details-container {
        margin-top: 40px;
        padding-top: 40px;
    }
    
    .store-details-container h3 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .store-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .store-card {
        padding: 25px 20px;
    }
    
    .store-name {
        font-size: 18px;
        margin-bottom: 18px;
    }
    
    .city-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .map-instructions h2 {
        font-size: 22px;
    }
    
    .store-legend {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .store-details-container h3 {
        font-size: 20px;
    }
    
    .store-card {
        padding: 20px 15px;
    }
    
    .store-name {
        font-size: 16px;
    }
    
    .city-label {
        font-size: 10px;
    }
    
    .city-marker {
        r: 10;
    }
}/* ==========================================================================
   Deniz Kabuğu Bijuteri - Main Stylesheet
   ========================================================================== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: white;
    color: #333;
    overflow-x: hidden;
}

/* Header Styles
   ========================================================================== */
header {
    background-color: white;
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 8px;
    color: #333;
    text-decoration: none;
	background-image: url("images/logo.png");
	width:220px;
	height:30px;
	margin-top:-15px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s;
}

nav a:hover {
    color: #666;
}

.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-icons svg {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cart-count {
    background-color: #333;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    position: relative;
    top: -10px;
    margin-left: -10px;
}

/* Mobile Menu Styles
   ========================================================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    display: block;
    transform: translateY(0);
}

.mobile-nav ul {
    flex-direction: column;
    padding: 30px 0;
    gap: 0;
}

.mobile-nav li {
    border-bottom: 1px solid #f0f0f0;
}

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

.mobile-nav a {
    display: block;
    padding: 15px 40px;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
}

.mobile-nav a:hover {
    background-color: #f8f8f8;
    color: #000;
}

/* Hero Section Styles
   ========================================================================== */
.hero {
    margin-top: 80px;
    background-color: #e8e3d8;
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

.hero-content {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: opacity 0.3s ease;
}

.hero-subtitle, .hero-title {
    transition: all 0.5s ease;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: #666;
}

.hero-title {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #333;
}

.shop-now-btn {
    background-color: #333;
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 1px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
	font-color: white;
}

.shop-now-btn:hover {
    background-color: #555;
}

/* Hero Images with Anti-pixelation
   ========================================================================== */
.hero-images {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60%;
    display: flex;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    position: absolute;
    transition: opacity 0.5s ease;
    /* Anti-pixelation properties */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: optimize-quality;
    -ms-interpolation-mode: bicubic;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.hero-image.active {
    opacity: 1;
}

/* Retina display optimization */
@media only screen and (-webkit-min-device-pixel-ratio: 2),
       only screen and (min--moz-device-pixel-ratio: 2),
       only screen and (-o-min-device-pixel-ratio: 2/1),
       only screen and (min-device-pixel-ratio: 2),
       only screen and (min-resolution: 192dpi),
       only screen and (min-resolution: 2dppx) {
    .hero-image {
        transform: translateZ(0) scale(1.001);
    }
}

/* Slide Controls
   ========================================================================== */
.slide-numbers {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}

.slide-number.active {
    font-weight: bold;
    color: #000;
}

.slide-number {
    display: block;
    margin: 40px 0;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    transition: transform 0.3s;
}

.slide-number:hover {
    transform: translateX(-10px);
}

.slide-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #999;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #333;
}

/* Brand Logos Section
   ========================================================================== */
.brands {
    background-color: white;
    padding: 60px 0;
    width: 100%;
}

.brands-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-logo {
    height: 30px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Collection Section
   ========================================================================== */
.collection {
    padding: 80px 40px;
    background-color: white;
    width: 100%;
}

.collection-title {
    text-align: center;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 60px;
    color: #666;
}

.products-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.product-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

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

.product-image-container {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: #f8f8f8;
}

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

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

.product-info {
    padding: 24px 20px;
    text-align: center;
}

.product-title {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.product-subtitle {
    font-size: 13px;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
}

/* Women Collection Section
   ========================================================================== */
.women-collection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #f9f9f9;
    width: 100%;
}

.women-image {
    position: relative;
    overflow: hidden;
}

.women-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border: none;
}

.play-button:hover {
    transform: scale(1.1);
}

.women-content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.women-content h3 {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #666;
    font-weight: 400;
}

.women-content h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.3;
}

.women-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 14px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

/* Video Modal Styles
   ========================================================================== */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

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

.video-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: black;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.video-content iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.close-video {
    position: absolute;
    top: -50px;
    right: 0;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    transition: transform 0.3s;
}

.close-video:hover {
    transform: scale(1.1);
}

/* Membership Benefits Section
   ========================================================================== */
.membership {
    background-color: white;
    padding: 100px 40px;
    text-align: center;
    width: 100%;
}

.membership h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 80px;
    letter-spacing: 2px;
}

.benefits-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.benefit h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
}

.benefit p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.email-signup {
    margin-top: 60px;
    text-align: center;
    font-size: 13px;
    color: #666;
}

.email-signup button {
    background-color: #d4c4a0;
    color: white;
    border: none;
    padding: 12px 30px;
    margin-top: 10px;
    cursor: pointer;
    font-size: 13px;
    transition: background-color 0.3s;
}

.email-signup button:hover {
    background-color: #c4b490;
}

/* Footer Styles
   ========================================================================== */
footer {
    background-color: #2a2a2a;
    color: white;
    padding: 60px 40px 40px;
    width: 100%;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 400;
}

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    line-height: 2;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-logo {
    font-size: 24px;
    letter-spacing: 8px;
    margin-bottom: 10px;
}

.footer-address {
    font-size: 13px;
    color: #ccc;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 30px;
    height: 30px;
    border: 1px solid #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    border-color: white;
    background-color: white;
    color: #2a2a2a;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-form input {
    width: 100%;
    padding: 10px;
    background-color: transparent;
    border: 1px solid #666;
    color: white;
    font-size: 13px;
    margin-bottom: 10px;
}

.newsletter-form input::placeholder {
    color: #999;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #999;
}

.footer-links {
    display: flex;
    gap: 20px;
}

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

.footer-links a:hover {
    color: white;
}

/* Responsive Design
   ========================================================================== */

/* Large Desktop (1200px+) */
@media (max-width: 1200px) {
    .header-container {
        max-width: 1000px;
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .products-grid {
        max-width: 1000px;
        gap: 35px;
    }
    
    .women-content {
        padding: 60px;
    }
}

/* Desktop (992px - 1200px) */
@media (max-width: 992px) {
    .header-container {
        padding: 0 25px;
    }
    
    nav ul {
        gap: 25px;
    }
    
    nav a {
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-content {
        left: 8%;
    }
    
    .hero-images {
        width: 65%;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .women-content {
        padding: 50px;
    }
    
    .women-content h2 {
        font-size: 32px;
    }
    
    .benefits-grid {
        gap: 50px;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
    }
}

/* Tablet (768px - 992px) */
@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
    
    .logo {
        font-size: 20px;
        letter-spacing: 6px;
    }
    
    /* Hide desktop nav, show mobile toggle */
    nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-icons {
        gap: 15px;
    }
    
    .hero {
        flex-direction: column;
        height: auto;
        min-height: 500px;
        text-align: center;
    }
    
    .hero-content {
        position: static;
        transform: none;
        padding: 40px 20px;
        order: 2;
        width: 100%;
    }
    
    .hero-images {
        position: static;
        width: 100%;
        height: 300px;
        order: 1;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .hero-subtitle {
        font-size: 12px;
        margin-bottom: 25px;
    }
    
    .slide-numbers {
        right: 20px;
        top: 20px;
        transform: none;
        display: flex;
        gap: 15px;
    }
    
    .slide-number {
        margin: 0;
        font-size: 16px;
    }
    
    .slide-dots {
        bottom: 20px;
    }
    
    .brands-container {
        gap: 40px;
        flex-direction: column;
    }
    
    .collection {
        padding: 60px 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 100%;
    }
    
    .product-info {
        padding: 18px 15px;
    }
    
    .product-title {
        font-size: 16px;
    }
    
    .women-collection {
        grid-template-columns: 1fr;
    }
    
    .women-content {
        padding: 40px 20px;
    }
    
    .women-content h2 {
        font-size: 28px;
    }
    
    .membership {
        padding: 80px 20px;
    }
    
    .membership h2 {
        font-size: 28px;
        margin-bottom: 60px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    footer {
        padding: 40px 20px 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .video-content iframe {
        height: 250px;
    }
    
    .play-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* Small Mobile (480px-) */
@media (max-width: 480px) {
    .logo {
        font-size: 18px;
        letter-spacing: 4px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    nav a {
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .shop-now-btn {
        padding: 14px 30px;
        font-size: 13px;
    }
    
    .hero-images {
        height: 250px;
    }
    
    .slide-numbers {
        right: 15px;
        top: 15px;
        gap: 10px;
    }
    
    .slide-number {
        font-size: 14px;
    }
    
    .brands-container span {
        font-size: 18px !important;
    }
    
    .collection-title {
        font-size: 12px;
        margin-bottom: 40px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-title {
        font-size: 15px;
    }
    
    .product-subtitle {
        font-size: 12px;
    }
    
    .women-content h3 {
        font-size: 11px;
    }
    
    .women-content h2 {
        font-size: 24px;
    }
    
    .women-content p {
        font-size: 13px;
    }
    
    .membership h2 {
        font-size: 24px;
        margin-bottom: 50px;
    }
    
    .benefit h3 {
        font-size: 15px;
    }
    
    .benefit p {
        font-size: 12px;
    }
    
    .footer-logo {
        font-size: 20px;
        letter-spacing: 6px;
    }
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */

/* Active Navigation Link */
nav a.active {
    color: #000;
    font-weight: 500;
}

/* Page Hero Section */
.page-hero {
    margin-top: 80px;
    background: linear-gradient(135deg, #e8e3d8 0%, #f4f1ec 100%);
    padding: 100px 40px 80px;
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #333;
}

.breadcrumb span {
    margin: 0 10px;
}

.page-title {
    font-size: 48px;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* About Content Section */
.about-content {
    padding: 80px 0;
    background-color: white;
}

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

/* Story Section */
.story-section {
    margin-bottom: 100px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text h2 {
    font-size: 36px;
    font-weight: 300;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.story-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

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

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Mission Vision Values Section */
.mvv-section {
    margin-bottom: 100px;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.mvv-item {
    text-align: center;
    padding: 40px 30px;
    background-color: #f9f9f9;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mvv-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mvv-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    padding: 15px;
    background-color: #e8e3d8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mvv-icon svg {
    width: 30px;
    height: 30px;
    color: #666;
}

.mvv-item h3 {
    font-size: 20px;
    font-weight: 400;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.mvv-item p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* Why Choose Section */
.why-choose-section {
    margin-bottom: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 300;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 16px;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #e8e3d8;
    background-color: #fafafa;
}

.feature-number {
    font-size: 36px;
    font-weight: 300;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 13px;
    color: #666;
}

/* CTA Section */
.cta-section {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 300;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.cta-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 16px 40px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: #333;
    border: 2px solid #333;
}

.btn-secondary:hover {
    background-color: #333;
    color: white;
}

/* About Page Responsive */
@media (max-width: 992px) {
    .page-title {
        font-size: 40px;
    }
    
    .story-grid {
        gap: 50px;
    }
    
    .mvv-grid {
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 80px 20px 60px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .about-content {
        padding: 60px 0;
    }
    
    .story-section {
        margin-bottom: 80px;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-text h2 {
        font-size: 28px;
    }
    
    .story-image img {
        height: 300px;
    }
    
    .mvv-section {
        margin-bottom: 80px;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mvv-item {
        padding: 30px 25px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cta-content h2 {
        font-size: 26px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 15px;
    }
    
    .story-text h2 {
        font-size: 24px;
    }
    
    .story-text p {
        font-size: 15px;
    }
    
    .mvv-item h3 {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .feature-number {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 22px;
    }
}