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

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --color-gold: #D4AF37;
    --color-dark-blue: #1C3575;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-light-blue: #D1F1FE;
    --color-dark-gray: #3D475E;
    --color-light-gray: rgba(255, 255, 255, 0.7);
    --gradient-dark: #1C3575;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: var(--color-dark-blue);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    word-wrap: break-word;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
}

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

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(28, 53, 117, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    overflow: hidden;
}

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

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 0 50 Q 100 30 200 50' stroke='rgba(255,255,255,0.04)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.header .container {
    position: relative;
    z-index: 1;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px;
    }
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 2px; /* room for active link underline */
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-link.active {
    color: var(--color-gold);
    font-weight: 600;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), rgba(212, 175, 55, 0.6));
    border-radius: 1px;
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(28, 53, 117, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: right 0.3s ease;
    padding-top: 100px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

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

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 0;
}

.mobile-nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: block;
}

.mobile-nav-link:hover {
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
    padding-left: 30px;
}

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

.mobile-nav-link.active {
    color: var(--color-gold);
    font-weight: 600;
    background: rgba(212, 175, 55, 0.15);
    border-left: 3px solid var(--color-gold);
    padding-left: 27px;
}

.mobile-nav-link.active:hover {
    background: rgba(212, 175, 55, 0.2);
    padding-left: 30px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

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

.icon-btn {
    background: transparent;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: color 0.3s ease;
}

.icon-btn:hover {
    color: var(--color-gold);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--color-gold);
    color: var(--color-black);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 70px;
        padding-bottom: 50px;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-dark-blue);
    z-index: 0;
}

/* Ensure all sections use the same background */
.hero,
.perfume-slider-section,
.about-section,
.all-perfumes-section,
.contact-section,
.contact-preview-section,
.about-preview-section,
.footer {
    background: var(--color-dark-blue) !important;
}

/* Remove any special gradient overlays that create different colors */
.hero-background .gradient-overlay {
    background: var(--color-dark-blue) !important;
}

.abstract-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 100 200 Q 300 100 500 200 T 900 200' stroke='rgba(255,255,255,0.15)' stroke-width='1' fill='none'/%3E%3Cpath d='M 200 400 Q 400 300 600 400 T 1000 400' stroke='rgba(255,255,255,0.12)' stroke-width='1' fill='none'/%3E%3Cpath d='M 50 300 Q 250 200 450 300' stroke='rgba(255,255,255,0.1)' stroke-width='1' fill='none'/%3E%3Cpath d='M 300 100 Q 500 50 700 100' stroke='rgba(255,255,255,0.08)' stroke-width='1' fill='none'/%3E%3C/svg%3E"),
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(28, 53, 117, 0.4) 0%, transparent 50%);
    opacity: 1;
    overflow: hidden;
    z-index: 1;
}

.abstract-lines::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transform: rotate(45deg);
    z-index: 2;
}

.abstract-lines::after {
    content: '';
    position: absolute;
    top: 60%;
    right: 15%;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: rotate(-30deg);
    z-index: 2;
}

@media (max-width: 768px) {
    .abstract-lines::before {
        width: 150px;
        height: 150px;
        left: 5%;
    }
    
    .abstract-lines::after {
        width: 100px;
        height: 100px;
        right: 5%;
    }
}

@media (max-width: 480px) {
    .abstract-lines::before,
    .abstract-lines::after {
        display: none;
    }
}

.hero-circle {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    opacity: 0.8;
    z-index: 1;
}

@media (max-width: 968px) {
    .hero-circle {
        width: 250px;
        height: 250px;
        left: 2%;
    }
}

@media (max-width: 768px) {
    .hero-circle {
        width: 150px;
        height: 150px;
        opacity: 0.5;
    }
}

.hero-dot {
    position: absolute;
    top: 5%;
    left: 3%;
    width: 12px;
    height: 12px;
    background: var(--color-white);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.hero-images {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-perfume-bottle {
    position: absolute;
    z-index: 1;
}

.hero-perfume-1 {
    top: 10%;
    right: 15%;
    width: 300px;
    height: 500px;
    opacity: 0.7;
}

.hero-perfume-2 {
    bottom: 5%;
    right: 25%;
    width: 250px;
    height: 400px;
    opacity: 0.6;
}

@media (max-width: 968px) {
    .hero-perfume-1 {
        width: 200px;
        height: 350px;
        right: 5%;
        opacity: 0.5;
    }
    
    .hero-perfume-2 {
        width: 150px;
        height: 250px;
        right: 10%;
        opacity: 0.4;
    }
}

@media (max-width: 768px) {
    .hero-perfume-1,
    .hero-perfume-2 {
        display: none;
    }
}

.hero-perfume-bottle img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgba(212, 175, 55, 0.6)' stroke-width='1.5'/%3E%3C/svg%3E") 12 12, auto;
    box-sizing: border-box;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .hero-content {
        gap: 40px;
    }
}

.hero-text {
    max-width: 700px;
    width: 100%;
    position: relative;
    z-index: 3;
    box-sizing: border-box;
}

.hero-title {
    font-size: 80px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

@media (min-width: 1400px) {
    .hero-title {
        font-size: 90px;
    }
}

.title-line {
    display: block;
}

.title-line-wide {
    margin-left: 100px;
}

.hero-description {
    font-size: 18px;
    color: var(--color-light-gray);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero-description {
        font-size: 14px;
        margin-bottom: 25px;
    }
}

.btn-explore {
    background: var(--color-white);
    color: var(--color-black);
    border: 1px solid var(--color-black);
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .btn-explore {
        padding: 12px 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .btn-explore {
        padding: 10px 24px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
}

.btn-explore:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateX(5px);
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-end;
    position: relative;
    z-index: 3;
}

.stat-item {
    text-align: right;
}

.stat-number {
    font-size: 64px;
    font-weight: 300;
    line-height: 1;
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 36px;
    }
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    color: var(--color-light-gray);
}

.stat-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* Perfume Slider Section */
.perfume-slider-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .perfume-slider-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .perfume-slider-section {
        padding: 50px 0;
    }
}

.perfume-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 0 300 Q 200 200 400 300 T 800 300' stroke='rgba(255,255,255,0.06)' stroke-width='1' fill='none'/%3E%3Cpath d='M 100 500 Q 300 400 500 500 T 900 500' stroke='rgba(255,255,255,0.05)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.perfume-slider-section .decorative-circle {
    position: absolute;
}

.perfume-slider-section .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--color-gold);
}

@media (min-width: 1400px) {
    .section-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-light-gray);
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .section-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--color-dark-blue);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 60px 0;
    }
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 100 200 Q 300 100 500 200 T 900 200' stroke='rgba(255,255,255,0.08)' stroke-width='1' fill='none'/%3E%3Cpath d='M 200 400 Q 400 300 600 400 T 1000 400' stroke='rgba(255,255,255,0.06)' stroke-width='1' fill='none'/%3E%3Cpath d='M 50 300 Q 250 200 450 300' stroke='rgba(255,255,255,0.05)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 22px;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
}

.faq-question:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

.faq-question-text {
    flex: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.faq-icon-line {
    position: absolute;
    width: 12px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-icon-line-1 {
    transform: rotate(0deg);
}

.faq-icon-line-2 {
    transform: rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon-line-2 {
    transform: rotate(0deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 22px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, opacity 0.25s ease;
}

.faq-answer p {
    padding-bottom: 18px;
    font-size: 15px;
    color: var(--color-light-gray);
}

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .slider-container {
        gap: 10px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        gap: 8px;
        margin-bottom: 30px;
    }
}

.slider-wrapper {
    flex: 1;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.perfume-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    will-change: transform;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.perfume-slider::-webkit-scrollbar {
    display: none;
}

@media (max-width: 768px) {
    .perfume-slider {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .perfume-slider {
        gap: 15px;
    }
}

.perfume-card {
    min-width: 320px;
    max-width: 320px;
    width: 320px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .perfume-card {
        min-width: 280px;
        max-width: 280px;
        width: 280px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .perfume-card {
        min-width: 260px;
        max-width: 260px;
        width: 260px;
        padding: 15px;
    }
}

.perfume-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.perfume-image {
    width: 100%;
    max-width: 100%;
    height: 350px;
    object-fit: contain;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgba(212, 175, 55, 0.6)' stroke-width='1.5'/%3E%3C/svg%3E") 12 12, auto;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .perfume-image {
        height: 280px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .perfume-image {
        height: 240px;
        padding: 10px;
    }
}

.perfume-brand {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.perfume-name {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--color-white);
}

.perfume-description {
    font-size: 14px;
    color: var(--color-light-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.perfume-price {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.perfume-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tag {
    background: rgba(212, 175, 55, 0.2);
    color: var(--color-gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-add-cart {
    width: 100%;
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 12px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.slider-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.view-all-container {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    padding: 15px 40px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .btn-view-all {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .btn-view-all {
        padding: 10px 24px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
}

.btn-view-all:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* About Us Preview Section */
/* About Us Preview Section */
.about-preview-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--color-dark-blue);
}

@media (max-width: 768px) {
    .about-preview-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .about-preview-section {
        padding: 50px 0;
    }
}

.about-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 100 200 Q 300 100 500 200 T 900 200' stroke='rgba(255,255,255,0.08)' stroke-width='1' fill='none'/%3E%3Cpath d='M 200 400 Q 400 300 600 400 T 1000 400' stroke='rgba(255,255,255,0.06)' stroke-width='1' fill='none'/%3E%3Cpath d='M 50 300 Q 250 200 450 300' stroke='rgba(255,255,255,0.05)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

/* Add decorative circles to about-preview-section */
.about-preview-section .decorative-circle {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.about-preview-section .decorative-circle-1 {
    width: 350px;
    height: 350px;
    top: 10%;
    right: 5%;
    opacity: 0.4;
    transform: rotate(35deg);
}

.about-preview-section .decorative-circle-2 {
    width: 220px;
    height: 220px;
    bottom: 15%;
    left: 5%;
    opacity: 0.3;
    transform: rotate(-50deg);
}

.about-preview-section .decorative-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-white);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.6;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 968px) {
    .about-preview-content {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .about-preview-content {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .about-preview-content {
        gap: 30px;
    }
}

.about-preview-image-wrapper {
    position: relative;
    height: 600px;
}

.about-preview-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
}

.about-preview-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.3);
    border-color: var(--color-gold);
}

.about-preview-image img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgba(212, 175, 55, 0.6)' stroke-width='1.5'/%3E%3C/svg%3E") 12 12, auto;
    box-sizing: border-box;
}

.about-preview-image:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    bottom: 30px;
    left: -15px;
    animation-delay: 2s;
}

.circle-3 {
    width: 60px;
    height: 60px;
    top: 50%;
    right: 10px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translate(20px, -20px) rotate(180deg);
        opacity: 0.6;
    }
}

.about-preview-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background: var(--color-gold);
}

.about-preview-title {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-white);
    margin: 0;
}

@media (min-width: 1400px) {
    .about-preview-title {
        font-size: 42px;
    }
}

.about-preview-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-light-gray);
    margin: 0;
}

.about-preview-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.preview-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.preview-feature:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

.feature-icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    color: var(--color-gold);
    transition: all 0.3s ease;
}

.preview-feature:hover .feature-icon-wrapper {
    background: var(--color-gold);
    color: var(--color-black);
    transform: rotate(5deg);
}

.preview-feature span {
    font-size: 14px;
    color: var(--color-white);
    font-weight: 500;
}

.btn-about-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    max-width: fit-content;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .btn-about-link {
        padding: 14px 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .btn-about-link {
        padding: 12px 24px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
}

.btn-about-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-about-link:hover {
    color: var(--color-black);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-about-link:hover::before {
    left: 0;
}

.btn-about-link svg {
    transition: transform 0.3s ease;
}

.btn-about-link:hover svg {
    transform: translateX(5px);
}

/* Contact Preview Section */
.contact-preview-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--color-dark-blue);
}

@media (max-width: 768px) {
    .contact-preview-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .contact-preview-section {
        padding: 50px 0;
    }
}

.contact-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 100 200 Q 300 100 500 200 T 900 200' stroke='rgba(255,255,255,0.08)' stroke-width='1' fill='none'/%3E%3Cpath d='M 200 400 Q 400 300 600 400 T 1000 400' stroke='rgba(255,255,255,0.06)' stroke-width='1' fill='none'/%3E%3Cpath d='M 50 300 Q 250 200 450 300' stroke='rgba(255,255,255,0.05)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.contact-preview-section .decorative-circle {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.contact-preview-section .decorative-circle-1 {
    width: 350px;
    height: 350px;
    top: 10%;
    right: 5%;
    opacity: 0.4;
    transform: rotate(35deg);
}

.contact-preview-section .decorative-circle-2 {
    width: 220px;
    height: 220px;
    bottom: 15%;
    left: 5%;
    opacity: 0.3;
    transform: rotate(-50deg);
}

.contact-preview-section .decorative-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-white);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.6;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.contact-preview-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-preview-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 1000px;
    box-sizing: border-box;
}

@media (max-width: 968px) {
    .contact-preview-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .contact-preview-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.contact-preview-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-preview-item:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.contact-preview-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: var(--color-gold);
}

.contact-preview-item h3 {
    font-size: 20px;
    color: var(--color-gold);
    margin-bottom: 15px;
    font-weight: 400;
}

.contact-preview-item p {
    color: var(--color-light-gray);
    line-height: 1.8;
    font-size: 15px;
}

.btn-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    max-width: fit-content;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .btn-contact-link {
        padding: 14px 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .btn-contact-link {
        padding: 12px 24px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
}

.btn-contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-contact-link:hover {
    color: var(--color-black);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-contact-link:hover::before {
    left: 0;
}

.btn-contact-link svg {
    transition: transform 0.3s ease;
}

.btn-contact-link:hover svg {
    transform: translateX(5px);
}

/* Contact Us Banner Section */
.contact-banner-section {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    margin: 100px 0;
}

.contact-banner-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.banner-gradient-1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-dark-blue);
}

.banner-gradient-2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 100 200 Q 300 100 500 200 T 900 200' stroke='rgba(255,255,255,0.1)' stroke-width='1' fill='none'/%3E%3Cpath d='M 200 400 Q 400 300 600 400 T 1000 400' stroke='rgba(255,255,255,0.08)' stroke-width='1' fill='none'/%3E%3Cpath d='M 50 300 Q 250 200 450 300' stroke='rgba(255,255,255,0.06)' stroke-width='1' fill='none'/%3E%3Cpath d='M 300 100 Q 500 50 700 100 T 1100 100' stroke='rgba(212,175,55,0.15)' stroke-width='1' fill='none'/%3E%3Cpath d='M 150 500 Q 350 450 550 500' stroke='rgba(212,175,55,0.12)' stroke-width='1' fill='none'/%3E%3C/svg%3E"),
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(28, 53, 117, 0.4) 0%, transparent 50%);
    opacity: 0.7;
    overflow: hidden;
}

.banner-gradient-2::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: rotate(45deg);
}

.banner-gradient-2::after {
    content: '';
    position: absolute;
    top: 60%;
    right: 15%;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    transform: rotate(-30deg);
}

.banner-gradient-3 {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    opacity: 0.6;
    z-index: 0;
}

.banner-pattern {
    position: absolute;
    top: 5%;
    left: 3%;
    width: 12px;
    height: 12px;
    background: var(--color-white);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.contact-banner-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-banner-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.banner-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.banner-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background: var(--color-gold);
}

.banner-title {
    font-size: 64px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-white);
    margin: 0;
}

.title-highlight {
    color: var(--color-gold);
    position: relative;
    display: inline-block;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold) 0%, transparent 100%);
    opacity: 0.5;
}

.banner-description {
    font-size: 20px;
    line-height: 1.8;
    color: var(--color-light-gray);
    margin: 0;
    max-width: 600px;
}

.banner-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
}

.banner-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.banner-stat-number {
    font-size: 36px;
    font-weight: 300;
    color: var(--color-gold);
    line-height: 1;
}

.banner-stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-light-gray);
}

.banner-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.contact-banner-action {
    position: relative;
}

.banner-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 40px;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.banner-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.3);
}

.banner-card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.banner-card:hover .banner-card-glow {
    opacity: 1;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.banner-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
}

.banner-card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    color: var(--color-gold);
    transition: all 0.3s ease;
}

.banner-card:hover .banner-card-icon {
    background: var(--color-gold);
    color: var(--color-black);
    transform: scale(1.1) rotate(5deg);
}

.banner-card-title {
    font-size: 28px;
    font-weight: 400;
    color: var(--color-white);
    margin: 0;
}

.banner-card-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-light-gray);
    margin: 0;
}

.btn-contact-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: var(--color-gold);
    border: 2px solid var(--color-gold);
    color: var(--color-black);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 700;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-contact-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-contact-banner:hover::before {
    width: 300px;
    height: 300px;
}

.btn-contact-banner span {
    position: relative;
    z-index: 1;
}

.btn-contact-banner svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-contact-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-contact-banner:hover svg {
    transform: translateX(5px);
}

.banner-card-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 24px;
}

.decoration-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    height: 1px;
    animation: shimmer 3s ease-in-out infinite;
}

.line-1 {
    top: 20%;
    left: -100%;
    width: 100%;
    animation-delay: 0s;
}

.line-2 {
    top: 50%;
    left: -100%;
    width: 80%;
    animation-delay: 1s;
}

.line-3 {
    bottom: 20%;
    left: -100%;
    width: 60%;
    animation-delay: 2s;
}

@keyframes shimmer {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.banner-card:hover .decoration-line {
    animation-duration: 1.5s;
}

/* Social Sidebar */
.social-sidebar {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 100;
    align-items: center;
}

.social-link {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: var(--color-white);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.social-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.social-text {
    position: relative;
}

.social-link:hover {
    color: var(--color-gold);
}

.social-link:hover .social-line {
    background: var(--color-gold);
    height: 50px;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--color-dark-blue);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 50px 0 25px;
    }
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 0 100 Q 150 50 300 100 T 600 100' stroke='rgba(255,255,255,0.05)' stroke-width='1' fill='none'/%3E%3Cpath d='M 200 200 Q 350 150 500 200' stroke='rgba(255,255,255,0.04)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

@media (max-width: 968px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 40px;
    }
}

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

.footer-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-description {
    color: var(--color-light-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(5, 40px);
    gap: 15px;
    justify-content: start;
}

.social-link-icon {
    color: var(--color-white);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link-icon:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 18px;
    color: var(--color-gold);
    margin-bottom: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: var(--color-light-gray);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--color-light-gray);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-category {
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.category-lines {
    width: 40px;
    height: 1px;
    background: var(--color-white);
    position: relative;
}

.category-lines::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 1px;
    background: var(--color-white);
    transform: translateY(-5px);
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    font-size: 14px;
    color: var(--color-light-gray);
}

.footer-domain {
    color: var(--color-gold);
}

/* Decorative Background Theme - Reusable */
.decorative-background {
    position: relative;
    overflow: hidden;
}

.decorative-background > *:not(.decorative-circle):not(.decorative-dot) {
    position: relative;
    z-index: 1;
}

.decorative-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 100 200 Q 300 100 500 200 T 900 200' stroke='rgba(255,255,255,0.08)' stroke-width='1' fill='none'/%3E%3Cpath d='M 200 400 Q 400 300 600 400 T 1000 400' stroke='rgba(255,255,255,0.06)' stroke-width='1' fill='none'/%3E%3Cpath d='M 50 300 Q 250 200 450 300' stroke='rgba(255,255,255,0.05)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.decorative-circle {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.decorative-circle-1 {
    width: 300px;
    height: 300px;
    top: 15%;
    right: 10%;
    opacity: 0.4;
    transform: rotate(25deg);
}

.decorative-circle-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 8%;
    opacity: 0.3;
    transform: rotate(-45deg);
}

.decorative-circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(60deg);
    opacity: 0.25;
}

.decorative-circle-4 {
    width: 180px;
    height: 180px;
    bottom: 10%;
    right: 15%;
    opacity: 0.35;
    transform: rotate(-30deg);
}

.decorative-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-white);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.6;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

/* Placeholder Image Styles */
.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(28, 53, 117, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light-gray);
    font-size: 14px;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 70px;
    }
    
    .hero-content {
        grid-template-columns: 1fr 250px;
        gap: 40px;
    }
    
    .about-preview-content {
        gap: 60px;
    }
    
    .about-preview-title {
        font-size: 32px;
    }
    
    .banner-title {
        font-size: 42px;
    }
    
    .contact-banner-content {
        gap: 60px;
    }
    
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 968px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 70px;
    }
    
    .title-line-wide {
        margin-left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .perfume-card {
        min-width: 280px;
        max-width: 280px;
        width: 280px;
    }
    
    .social-sidebar {
        display: none;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-preview-image-wrapper {
        height: 400px;
    }
    
    .about-preview-title {
        font-size: 36px;
    }
    
    .about-preview-description {
        font-size: 16px;
    }
    
    .about-preview-features {
        gap: 20px;
    }
    
    .contact-preview-section {
        padding: 100px 0;
    }
    
    .contact-preview-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-banner-section {
        padding: 100px 0;
        margin: 60px 0;
    }
    
    .contact-banner-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .banner-title {
        font-size: 42px;
    }
    
    .banner-description {
        font-size: 18px;
    }
    
    .banner-stats {
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .banner-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-copyright {
        align-items: center;
    }
    
    .social-links {
        grid-template-columns: repeat(4, 40px);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .hero-title {
        font-size: 50px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .perfume-card {
        min-width: 250px;
        max-width: 250px;
        width: 250px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .about-preview-section {
        padding: 80px 0;
    }
    
    .about-preview-image-wrapper {
        height: 300px;
    }
    
    .about-preview-title {
        font-size: 28px;
    }
    
    .about-preview-description {
        font-size: 15px;
    }
    
    .about-preview-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .preview-feature {
        width: 100%;
    }
    
    .contact-preview-section {
        padding: 80px 0;
    }
    
    .contact-preview-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-preview-item {
        padding: 25px;
    }
    
    .contact-banner-section {
        padding: 80px 0;
        margin: 40px 0;
    }
    
    .banner-title {
        font-size: 32px;
    }
    
    .banner-description {
        font-size: 16px;
    }
    
    .banner-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .banner-stat-divider {
        display: none;
    }
    
    .banner-card {
        padding: 30px 20px;
    }
    
    .banner-card-title {
        font-size: 24px;
    }
    
    .btn-contact-banner {
        padding: 16px 35px;
        font-size: 14px;
    }
    
    .banner-gradient-3 {
        width: 250px;
        height: 250px;
    }
    
    .banner-gradient-2::before {
        width: 200px;
        height: 200px;
    }
    
    .banner-gradient-2::after {
        width: 150px;
        height: 150px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .hero {
        padding-top: 80px;
        min-height: auto;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .perfume-price {
        font-size: 24px;
    }
    
    .perfume-name {
        font-size: 20px;
    }
    
    .perfume-brand {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 38px;
        line-height: 1.1;
    }
    
    .title-line-wide {
        margin-left: 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .perfume-card {
        min-width: 240px;
        max-width: 240px;
        width: 240px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .slider-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .about-preview-title {
        font-size: 24px;
    }
    
    .about-preview-description {
        font-size: 14px;
    }
    
    .about-preview-image-wrapper {
        height: 250px;
    }
    
    .contact-preview-item {
        padding: 20px;
    }
    
    .contact-preview-item h3 {
        font-size: 18px;
    }
    
    .contact-preview-item p {
        font-size: 14px;
    }
    
    .contact-preview-icon {
        width: 50px;
        height: 50px;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .footer-heading {
        font-size: 16px;
    }
    
    .footer-description {
        font-size: 13px;
    }
    
    .footer-links li a {
        font-size: 13px;
    }
    
    .footer-contact li {
        font-size: 13px;
    }
    
    .hero-content {
        gap: 25px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .perfume-price {
        font-size: 22px;
    }
    
    .perfume-name {
        font-size: 18px;
    }
    
    .perfume-description {
        font-size: 13px;
    }
    
    .tag {
        font-size: 10px;
        padding: 3px 10px;
    }
    
    .btn-add-cart {
        font-size: 13px;
        padding: 10px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .decorative-circle {
        display: none;
    }
    
    .decorative-dot {
        display: none;
    }
}

/* Welcome popup (admin-controlled) */
.welcome-popup-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.welcome-popup-backdrop.active {
    opacity: 1;
    visibility: visible;
}
.welcome-popup-card {
    position: relative;
    max-width: 480px;
    width: 100%;
    background: var(--color-dark-blue);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: scale(0.95);
    transition: transform 0.25s ease;
}
.welcome-popup-backdrop.active .welcome-popup-card {
    transform: scale(1);
}
.welcome-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--color-light-gray);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.welcome-popup-close:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
}
.welcome-popup-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    color: var(--color-gold);
    margin: 0 0 16px 0;
    padding-right: 36px;
}
.welcome-popup-image-wrap {
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.15);
}
.welcome-popup-image-wrap img {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    display: block;
}
.welcome-popup-content {
    color: var(--color-light-gray);
    line-height: 1.6;
    margin-bottom: 24px;
}
.welcome-popup-content p {
    margin: 0 0 0.75em 0;
}
.welcome-popup-content p:last-child {
    margin-bottom: 0;
}
.welcome-popup-dismiss {
    display: block;
    width: 100%;
    padding: 12px 20px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark-blue);
    background: var(--color-gold);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}
.welcome-popup-dismiss:hover {
    background: #e0bc3d;
}
.welcome-popup-dismiss:active {
    transform: scale(0.98);
}

