/* TABLE OF CONTENTS
---------------------------
1.  RESET & GLOBAL STYLES
2.  CSS CUSTOM PROPERTIES (VARIABLES)
3.  TYPOGRAPHY
4.  LAYOUT & HELPERS
5.  HEADER & NAVIGATION
6.  MOBILE NAVIGATION
7.  FOOTER
8.  BUTTONS & FORMS
9.  PAGE-SPECIFIC STYLES
    9.1. HOME - HERO SECTION
    9.2. HOME - INTRO SECTION
    9.3. HOME - COLLECTIONS
    9.4. HOME - ABOUT / CRAFTSMANSHIP
    9.5. HOME - PARALLAX CTA
    9.6. HOME - LOOKBOOK
    9.7. HOME - GEMS SECTION
    9.8. HOME - TESTIMONIALS
    9.9. HOME - NEWSLETTER
    9.10. CONTACT PAGE
    9.11. LEGAL PAGES (TERMS, PRIVACY, ETC.)
10. ANIMATIONS & KEYFRAMES
11. RESPONSIVE DESIGN (MEDIA QUERIES)
--------------------------- */


/* --- 1. RESET & GLOBAL STYLES --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-text-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-main);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-background);
}

::-webkit-scrollbar-thumb {
    background: var(--color-accent-muted);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* --- 2. CSS CUSTOM PROPERTIES (VARIABLES) --- */
:root {
    /* Colors */
    --color-background: #1a1a1a;
    --color-surface: #252525;
    --color-primary: #111111;
    --color-accent: #c09f80;
    --color-accent-muted: #856d59;
    --color-accent-light: #d9c6b3;
    --color-text-light: #f5f5f5;
    --color-text-dark: #333333;
    --color-text-muted: #a0a0a0;
    --color-border: #3a3a3a;
    --color-success: #28a745;
    --color-error: #dc3545;

    /* Fonts */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Lato', sans-serif;

    /* Spacing & Sizing */
    --header-height: 90px;
    --container-width: 1200px;
    --container-padding: 1rem;

    /* Transitions & Shadows */
    --transition-main: all 0.3s ease-in-out;
    --transition-fast: all 0.2s ease-in-out;
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.2);
    --shadow-accent: 0 0 15px rgba(192, 159, 128, 0.3);
}

/* --- 3. TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text-light);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 1px;
}

h2 {
    font-size: 2.75rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

strong {
    font-weight: 700;
    color: var(--color-accent-light);
}

/* Section Headers */
.section-header {
    margin-bottom: 4rem;
}

.section-tag {
    display: block;
    font-family: var(--font-body);
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-title {
    margin-bottom: 1rem;
}

.section-intro {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

/* --- 4. LAYOUT & HELPERS --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

section {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}


/* --- 5. HEADER & NAVIGATION --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    background-color: transparent;
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease, height 0.4s ease;
}

.header.scrolled {
    background-color: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    height: calc(var(--header-height) - 10px);
    box-shadow: var(--shadow-medium);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 1rem;
    flex-shrink: 0;
    transition: var(--transition-main);
}

.logo {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition-main);
}


.nav-menu,
.nav-menu-right {
    display: flex;
    flex: 1;
}

.nav-menu {
    justify-content: flex-start;
}

.nav-menu-right {
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--color-accent);
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-accent-light);
}

.header-actions {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.header-icon-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: 2rem;
}

.header-icon {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.header-icon:hover {
    color: var(--color-accent);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
    z-index: 1002;
}

.bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-light);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.bar:nth-child(1) {
    top: 0;
}

.bar:nth-child(2) {
    top: 10px;
}

.bar:nth-child(3) {
    top: 20px;
}


/* --- 6. MOBILE NAVIGATION --- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    /* Start off-screen */
    width: 300px;
    height: 100vh;
    background-color: var(--color-primary);
    z-index: 1001;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.mobile-logo {
    height: 35px;
}

.close-menu-btn {
    background: none;
    border: none;
    color: var(--color-text-light);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav-list {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--color-text-light);
    transition: var(--transition-fast);
    display: block;
}

.mobile-nav-link:hover {
    color: var(--color-accent);
    transform: translateX(10px);
}

.mobile-nav-footer .social-links {
    justify-content: center;
}


/* --- 7. FOOTER --- */
.footer {
    background-color: var(--color-primary);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-about-text {
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 300px;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--color-text-muted);
    font-size: 1.2rem;
}

.social-links a:hover {
    color: var(--color-accent);
    transform: translateY(-3px);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--color-text-muted);
    font-family: var(--font-body);
}

.footer-links a:hover {
    color: var(--color-accent-light);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* --- 8. BUTTONS & FORMS --- */
.btn {
    display: inline-block;
    padding: 0.8rem 2.2rem;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-main);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background-color: var(--color-accent-muted);
    border-color: var(--color-accent-muted);
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-accent-light);
    border-color: var(--color-accent);
}

.btn-secondary:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.btn-full {
    width: 100%;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 5px;
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(192, 159, 128, 0.2);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23c09f80' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

textarea {
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

/* --- 9. PAGE-SPECIFIC STYLES --- */

/* 9.1. HOME - HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-content {
    z-index: 1;
}

.hero-title {
    font-size: 5.5vw;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: var(--color-text-light);
    font-weight: 300;
}

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.mouse {
    width: 25px;
    height: 45px;
    border: 2px solid var(--color-accent-light);
    border-radius: 20px;
    position: relative;
}

.mouse span {
    position: absolute;
    display: block;
    top: 29%;
    left: 50%;
    width: 4px;
    height: 6px;
    margin: -3px 0 0 -2px;
    background: var(--color-accent-light);
    border-radius: 50%;
    animation: mouse-scroll 1.5s linear infinite;
}

/* 9.2. HOME - INTRO SECTION */
.intro-section {
    background-color: var(--color-primary);
}

.intro-feature {
    text-align: center;
    padding: 2rem;
}

.intro-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.intro-title {
    font-size: 1.5rem;
    color: var(--color-text-light);
}

/* 9.3. HOME - COLLECTIONS */
.collections-section {
    background-color: var(--color-background);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.collection-card {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    aspect-ratio: 4 / 5;
}

.collection-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.collection-card:hover .collection-image {
    transform: scale(1.05);
}

.collection-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--color-text-light);
    text-align: left;
    transition: var(--transition-main);
}

.collection-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.collection-link {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s 0.1s ease, opacity 0.5s 0.1s ease;
}

.collection-card:hover .collection-title,
.collection-card:hover .collection-link {
    transform: translateY(0);
    opacity: 1;
}

.collection-link i {
    margin-left: 0.5rem;
    transition: var(--transition-fast);
}

.collection-card:hover .collection-link i {
    transform: translateX(5px);
}

/* 9.4. HOME - ABOUT / CRAFTSMANSHIP */
.about-section {
    background-color: var(--color-primary);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content .section-title {
    font-size: 2.5rem;
}

/* 9.5. HOME - PARALLAX CTA */
.parallax-section {
    background-image: url('https://images.pexels.com/photos/17796/christmas-xmas-gifts-presents.jpg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 8rem 0;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.parallax-section .container {
    position: relative;
    z-index: 1;
}

.parallax-title {
    font-size: 3rem;
    color: var(--color-text-light);
}

.parallax-text {
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* 9.6. HOME - LOOKBOOK */
.lookbook-section {
    background-color: var(--color-background);
}

.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
    gap: 1.5rem;
}

.lookbook-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.lookbook-item:nth-child(2) {
    grid-column: span 2;
    grid-row: span 2;
}

.lookbook-item:nth-child(3) {
    grid-row: span 2;
}

.lookbook-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lookbook-item:hover img {
    transform: scale(1.05);
}

.lookbook-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: var(--transition-main);
}

.lookbook-item:hover .lookbook-item-overlay {
    opacity: 1;
}

.lookbook-item-overlay span {
    color: var(--color-text-light);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.lookbook-item:hover .lookbook-item-overlay span {
    transform: translateY(0);
}

/* 9.7. HOME - GEMS SECTION */
.gems-section {
    background-color: var(--color-primary);
}

.gems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gem-card {
    background-color: var(--color-surface);
    padding: 2.5rem;
    border-radius: 5px;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: var(--transition-main);
}

.gem-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gem-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-accent);
    transition: var(--transition-main);
}

.gem-card:hover .gem-icon-wrapper {
    background-color: var(--color-accent);
}

.gem-icon-wrapper i {
    font-size: 2rem;
    color: var(--color-accent);
    transition: var(--transition-main);
}

.gem-card:hover .gem-icon-wrapper i {
    color: var(--color-primary);
}

.gem-title {
    color: var(--color-text-light);
    font-size: 1.5rem;
}

.gem-description {
    font-size: 0.95rem;
}

/* 9.8. HOME - TESTIMONIALS */
.testimonials-section {
    background-color: var(--color-background);
}

.testimonial-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    height: 200px;
    /* Adjust as needed */
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-slide.active {
    opacity: 1;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.slider-btn {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-btn:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
}

/* 9.9. HOME - NEWSLETTER */
.newsletter-section {
    background-color: var(--color-primary);
    padding: 4rem 0;
}

.newsletter-container {
    text-align: center;
}

.newsletter-container h3 {
    font-size: 2rem;
}

.newsletter-container p {
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex-grow: 1;
    border-radius: 50px 0 0 50px;
    border-right: none;
}

.newsletter-form button {
    border-radius: 0 50px 50px 0;
}

/* 9.10. CONTACT PAGE */
.contact-page-section {
    padding-top: 5rem;
    background-color: var(--color-background);
}

.page-header {
    padding: calc(var(--header-height) + 4rem) 0 4rem;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.pexels.com/photos/1280162/pexels-photo-1280162.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') center/cover no-repeat;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
}

.breadcrumbs {
    color: var(--color-accent-light);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs i {
    font-size: 0.8rem;
    margin: 0 0.5rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    background-color: var(--color-primary);
    padding: 4rem;
    border-radius: 5px;
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.contact-info-panel h3 {
    color: var(--color-text-light);
    font-size: 2rem;
}

.contact-info-panel p {
    margin-bottom: 2.5rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-details-list i {
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-top: 5px;
}

.contact-details-list h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--color-text-light);
}

.contact-details-list p,
.contact-details-list a {
    color: var(--color-text-muted);
    margin: 0;
}

.contact-details-list a:hover {
    color: var(--color-accent-light);
}

/* Success Popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: var(--color-surface);
    padding: 3rem;
    border-radius: 5px;
    text-align: center;
    max-width: 500px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup.show .popup-content {
    transform: scale(1);
}

.popup-icon i {
    font-size: 4rem;
    color: var(--color-success);
    margin-bottom: 1.5rem;
}

.popup-content h3 {
    font-size: 1.8rem;
    color: var(--color-text-light);
}

/* 9.11. LEGAL PAGES */
.legal-content {
    background-color: var(--color-surface);
    padding: 3rem 4rem;
    border-radius: 5px;
    max-width: 900px;
    margin: -2rem auto 5rem;
    position: relative;
    z-index: 2;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-accent-light);
}

.legal-content ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--color-accent);
}

.legal-content a:hover {
    text-decoration: underline;
}

.last-updated {
    text-align: right;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* --- 10. ANIMATIONS & KEYFRAMES --- */
@keyframes mouse-scroll {
    0% {
        opacity: 1;
        top: 29%;
    }

    15% {
        opacity: 1;
        top: 50%;
    }

    50% {
        opacity: 0;
        top: 50%;
    }

    100% {
        opacity: 0;
        top: 29%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: none;
}

.animate-on-scroll[data-animation="fade-in"] {
    /* No transform needed */
}

.animate-on-scroll[data-animation="fade-in-up"] {
    transform: translateY(40px);
}

.animate-on-scroll[data-animation="fade-in-left"] {
    transform: translateX(-50px);
}

.animate-on-scroll[data-animation="fade-in-right"] {
    transform: translateX(50px);
}

.animate-on-scroll[data-animation="zoom-in"] {
    transform: scale(0.9);
}

/* --- 11. RESPONSIVE DESIGN (MEDIA QUERIES) --- */

/* Laptops & Desktops */
@media (max-width: 1200px) {
    :root {
        --container-width: 960px;
    }

    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 6vw;
    }

    .collection-grid,
    .gems-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .lookbook-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lookbook-item:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }
}

/* Tablets */
@media (max-width: 992px) {
    :root {
        --container-width: 720px;
        --header-height: 80px;
    }

    section {
        padding: 4rem 0;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 8vw;
    }

    .nav-menu,
    .nav-menu-right {
        display: none;
    }

    .header-actions .header-icon-group {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .header-container {
        justify-content: space-between;
    }

    .logo-link {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .grid-3-col {
        grid-template-columns: 1fr;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        margin-bottom: 2rem;
    }

    .about-content {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-about-text {
        max-width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .legal-content {
        padding: 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Mobile Phones */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 10vw;
    }

    .collection-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .collection-card {
        aspect-ratio: 1 / 1;
    }

    .lookbook-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonials-section {
        padding-bottom: 5rem;
    }

    .testimonial-text {
        font-size: 1.2rem;
    }

    .testimonial-slider {
        height: 250px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links ul {
        align-items: center;
    }
}

@media (max-width: 576px) {
    :root {
        --container-padding: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
    }

    .mobile-nav {
        width: 100%;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form input,
    .newsletter-form button {
        border-radius: 50px;
    }

    .newsletter-form input {
        border-right: 1px solid var(--color-border);
    }
}