* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #2d2d2d 100%);
    min-height: 100vh;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    background: linear-gradient(135deg, #00d4aa, #007991);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #00d4aa;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #00d4aa, #007991);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-login, .btn-admin, .btn-wishlist, .btn-cart {
    background: linear-gradient(135deg, #d4af37, #ffd700) !important;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: transform 0.3s ease;
    margin-left: 0.5rem;
}

.btn-login:hover, .btn-admin:hover, .btn-wishlist:hover, .btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-wishlist {
    background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
}

.btn-cart {
    background: linear-gradient(135deg, #27ae60, #229954) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="20" cy="20" r="10" fill="url(%23a)"/><circle cx="80" cy="30" r="15" fill="url(%23a)"/><circle cx="40" cy="70" r="8" fill="url(%23a)"/><circle cx="90" cy="80" r="12" fill="url(%23a)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

.hero-content {
    flex: 1;
    padding: 0 2rem;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    animation: slideInLeft 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: slideInLeft 1s ease-out 0.4s both;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 20px;
}

.hero-circle-wrapper {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.15) 40%, rgba(255,255,255,0.05) 70%, transparent 100%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.hero-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heroSpin 6s linear infinite;
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(6px);
}

.hero-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

@keyframes heroSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-side-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-bottle {
    width: 100px;
    height: 160px;
    border-radius: 22px 22px 34px 34px;
    background: linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
    border: 1px solid rgba(255,255,255,0.25);
    position: relative;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    overflow: hidden;
}

.hero-bottle::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 18px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border-radius: 10px 10px 0 0;
    box-shadow: 0 6px 12px rgba(212,175,55,0.4);
}

.hero-bottle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 34px 34px;
}

.hero-thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-thumbs img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(212, 175, 55, 0.5);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-thumbs img:hover {
    transform: scale(1.08);
    box-shadow: 0 0 10px rgba(212,175,55,0.6);
}

.perfume-bottle {
    width: 300px;
    height: 400px;
    background: linear-gradient(145deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    border-radius: 50px 50px 20px 20px;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    animation: bottleFloat 3s ease-in-out infinite;
}

.perfume-bottle::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 40px;
    background: linear-gradient(145deg, #d4af37, #ffd700);
    border-radius: 10px 10px 0 0;
}

.perfume-bottle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 250px;
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.3), rgba(255, 215, 0, 0.2));
    border-radius: 30px;
    z-index: 1;
}

@keyframes bottleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.bottle-window {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 250px;
    border-radius: 30px;
    overflow: hidden;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.35);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
}

.bottle-window img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: transparent;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #00d4aa, #007991);
}

.slider-container {
    overflow: hidden;
    position: relative;
    margin-top: 3rem;
}

.products-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    min-width: 300px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-image {
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00d4aa;
    margin-bottom: 1rem;
}

.product-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.add-to-cart {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.add-to-wishlist {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.add-to-wishlist:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: transparent;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-text p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: #00d4aa;
    font-size: 1.5rem;
}

.feature span {
    font-weight: 500;
    color: #ffffff;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: transparent;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-item i {
    color: #00d4aa;
    font-size: 1.5rem;
    min-width: 30px;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-item p {
    color: #cccccc;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    backdrop-filter: blur(5px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #cccccc;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00d4aa;
    background: rgba(255, 255, 255, 0.15);
}

.contact-form button {
    background: linear-gradient(135deg, #00d4aa, #007991);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 212, 170, 0.3);
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #d4af37;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST APPROACH
   ============================================ */

/* CSS Custom Properties for Responsive Spacing */
:root {
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;
    
    --container-padding: 1rem;
    --section-padding: 3rem 0;
    
    --font-size-base: 16px;
    --font-size-sm: 14px;
    --font-size-lg: 18px;
}

/* Fluid Typography */
html {
    font-size: var(--font-size-base);
}

h1, .hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
}

h2, .section-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 2rem);
}

p, .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
}

/* Container Responsive */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   MOBILE FIRST: 320px - 480px (Small Phones)
   ============================================ */

/* Navigation - Mobile */
.navbar {
    padding: 0.75rem 0;
}

.nav-container {
    padding: 0 1rem;
}

.nav-logo h2 {
    font-size: 1.5rem;
}

.nav-logo img {
    width: 35px !important;
    height: 35px !important;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #d4af37;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

.nav-menu {
    position: fixed;
    left: -100%;
    top: 60px;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    box-shadow: 0 10px 27px rgba(0,0,0,0.5);
    padding: 2rem 0;
    gap: 0.5rem;
    height: calc(100vh - 60px);
    overflow-y: auto;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.nav-menu.active {
    left: 0;
}

.nav-menu li {
    margin: 0.5rem 0;
    width: 100%;
}

.nav-menu a {
    display: block;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Search Bar - Mobile */
.search-toggle {
    width: 100%;
    flex-direction: column;
    padding: 0 1rem;
}

.search-toggle input {
    width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 0.5rem;
}

.search-toggle button {
    width: 100%;
    border-radius: 20px !important;
    padding: 10px !important;
    height: auto !important;
}

/* Buttons - Mobile Touch Optimized */
.btn-login, .btn-admin, .btn-wishlist, .btn-cart {
    padding: 0.75rem 1.25rem !important;
    font-size: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Hero Section - Mobile */
.hero {
    flex-direction: column;
    text-align: center;
    padding: 6rem 1rem 3rem;
    min-height: auto;
    height: auto;
}

.hero-content {
    padding: 0 1rem;
    order: 1;
}

.hero-title {
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    text-align: center;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    order: 2;
    margin-top: 2rem;
    width: 100%;
}

.perfume-bottle {
    width: 200px;
    height: 280px;
    margin: 0 auto;
}

.bottle-window {
    width: 150px;
    height: 200px;
}

.hero-circle-wrapper {
    width: 200px;
    height: 200px;
}

.hero-circle {
    width: 160px;
    height: 160px;
}

.hero-bottle {
    width: 80px;
    height: 130px;
}

.hero-thumbs img {
    width: 35px;
    height: 35px;
}

/* Products Section - Mobile */
.products {
    padding: 3rem 0;
}

.section-title {
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.section-title::after {
    width: 80px;
}

/* Collection Buttons - Mobile */
.collection-btn {
    padding: 10px 15px !important;
    margin: 5px !important;
    font-size: 0.9rem !important;
    white-space: nowrap;
}

/* Products Grid - Mobile */
.products-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 0 1rem;
}

.product-card {
    min-width: 100%;
    max-width: 100%;
}

.product-image {
    height: 200px;
}

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

.product-info {
    padding: 1rem;
}

.product-info h3 {
    font-size: 1.25rem;
}

.product-buttons {
    flex-direction: column;
    gap: 0.75rem;
}

.add-to-cart, .add-to-wishlist {
    width: 100%;
    padding: 0.9rem 1rem;
    min-height: 48px;
}

/* Review Section - Mobile */
.about {
    padding: 3rem 0;
}

.about-content {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    padding: 0 1rem;
}

.about-image {
    order: 2;
}

.about-image > div {
    max-width: 100% !important;
    height: 300px !important;
}

.about-text {
    order: 1;
}

#reviewForm {
    grid-template-columns: 1fr !important;
    padding: 1.5rem !important;
    gap: 1rem !important;
}

#reviewForm > div {
    grid-column: 1 !important;
}

#reviewForm label {
    font-size: 0.95rem;
}

#reviewForm input,
#reviewForm select,
#reviewForm textarea {
    padding: 0.9rem !important;
    font-size: 1rem;
}

#reviewForm button {
    padding: 1rem 2rem !important;
    min-height: 50px;
}

/* Contact Section - Mobile */
.contact {
    padding: 3rem 0;
}

.contact-content {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    padding: 0 1rem;
}

.contact-info {
    gap: 1rem;
}

.contact-item {
    padding: 1.25rem;
}

.contact-item i {
    font-size: 1.25rem;
}

.contact-form {
    padding: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.9rem;
    font-size: 1rem;
}

.contact-form button {
    padding: 1rem 2rem;
    min-height: 50px;
}

/* Footer - Mobile */
.footer {
    padding: 2rem 0 1rem;
}

.footer-content {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    text-align: center;
    padding: 0 1rem;
}

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-section h4 {
    font-size: 1.1rem;
}

.social-links {
    justify-content: center;
}

.social-links a {
    width: 44px;
    height: 44px;
}

.footer-bottom {
    padding: 1.5rem 1rem 0;
}

/* Panel Styles - Mobile */
.panel-container {
    padding: 1rem 0;
}

.panel-card {
    margin: 0 0.5rem;
    border-radius: 15px;
}

.panel-header {
    padding: 1.5rem 1rem;
}

.panel-header h1 {
    font-size: 1.75rem;
}

.panel-nav {
    padding: 1rem;
    overflow-x: auto;
}

.panel-nav ul {
    gap: 1rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.panel-nav a {
    padding: 0.75rem 1.25rem;
    white-space: nowrap;
    font-size: 0.9rem;
}

.panel-content {
    padding: 1.5rem 1rem;
}

.dashboard-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
}

.dashboard-card {
    padding: 1.5rem;
}

/* Data Table - Mobile */
.data-table {
    overflow-x: auto;
}

.data-table table {
    min-width: 600px;
}

.data-table th,
.data-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
}

/* Modal - Mobile */
.modal {
    padding: 10px;
}

.modal-content {
    width: 95% !important;
    max-width: 95% !important;
    margin: 10px auto;
    max-height: 90vh;
}

.modal-content h2 {
    padding: 1.25rem 1rem 0.75rem !important;
    font-size: 1.5rem !important;
}

.modal-content form {
    padding: 1rem !important;
}

.close {
    right: 1rem;
    top: 1rem;
    width: 30px;
    height: 30px;
    font-size: 1.5rem;
}

/* Form Groups - Mobile */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem;
    font-size: 1rem;
    min-height: 48px;
}

/* Buttons - Mobile */
.btn {
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    min-height: 44px;
}

/* ============================================
   LARGE PHONES: 481px - 768px
   ============================================ */
@media (min-width: 481px) {
    :root {
        --container-padding: 1.5rem;
    }
    
    .nav-logo h2 {
        font-size: 1.75rem;
    }
    
    .nav-logo img {
        width: 40px !important;
        height: 40px !important;
    }
    
    .hero {
        padding: 7rem 1.5rem 4rem;
    }
    
    .perfume-bottle {
        width: 250px;
        height: 330px;
    }
    
    .bottle-window {
        width: 180px;
        height: 230px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    .product-image {
        height: 220px;
    }
    
    .collection-btn {
        padding: 12px 20px !important;
        font-size: 1rem !important;
    }
    
    .about-image > div {
        height: 350px !important;
    }
    
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .modal-content {
        width: 90% !important;
        max-width: 500px !important;
    }
}

/* ============================================
   TABLETS: 769px - 1024px
   ============================================ */
@media (min-width: 769px) {
    :root {
        --container-padding: 2rem;
        --section-padding: 4rem 0;
    }
    
    /* Navigation - Tablet */
    .hamburger {
        display: none;
    }
    
    .nav-menu {
        position: static;
        flex-direction: row;
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        gap: 1.5rem;
        box-shadow: none;
        border: none;
    }
    
    .nav-menu li {
        margin: 0;
        width: auto;
    }
    
    .nav-menu a {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    
    .search-toggle {
        flex-direction: row;
        width: auto;
        padding: 0;
    }
    
    .search-toggle input {
        width: 200px !important;
        margin-right: 10px !important;
        margin-bottom: 0;
    }
    
    .search-toggle button {
        width: 30px !important;
        height: 30px !important;
        border-radius: 50% !important;
        padding: 0 !important;
    }
    
    /* Hero - Tablet */
    .hero {
        flex-direction: row;
        text-align: left;
        padding: 2rem;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 0 2rem;
        order: 0;
    }
    
    .hero-image {
        order: 0;
        margin-top: 0;
    }
    
    .cta-button {
        width: auto;
    }
    
    .perfume-bottle {
        width: 280px;
        height: 370px;
    }
    
    .bottle-window {
        width: 190px;
        height: 240px;
    }
    
    /* Products - Tablet */
    .products {
        padding: 4rem 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
    
    .product-image {
        height: 230px;
    }
    
    .collection-btn {
        padding: 12px 25px !important;
        margin: 0 10px !important;
    }
    
    /* Review - Tablet */
    .about {
        padding: 4rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr !important;
    }
    
    .about-image {
        order: 0;
    }
    
    .about-text {
        order: 0;
    }
    
    .about-image > div {
        height: 400px !important;
    }
    
    #reviewForm {
        grid-template-columns: 1fr 1fr !important;
        padding: 2rem !important;
    }
    
    #reviewForm > div:nth-last-child(2),
    #reviewForm > div:last-child {
        grid-column: 1 / -1 !important;
    }
    
    /* Contact - Tablet */
    .contact {
        padding: 4rem 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr !important;
    }
    
    /* Footer - Tablet */
    .footer-content {
        grid-template-columns: repeat(2, 1fr) !important;
        text-align: left;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    /* Panel - Tablet */
    .panel-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
    
    .data-table table {
        min-width: auto;
    }
    
    .modal-content {
        width: 80% !important;
        max-width: 600px !important;
    }
}

/* ============================================
   LAPTOPS & DESKTOPS: 1025px - 1440px
   ============================================ */
@media (min-width: 1025px) {
    .nav-logo h2 {
        font-size: 2rem;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .perfume-bottle {
        width: 300px;
        height: 400px;
    }
    
    .bottle-window {
        width: 200px;
        height: 250px;
    }
    
    .hero-circle-wrapper {
        width: 280px;
        height: 280px;
    }
    
    .hero-circle {
        width: 220px;
        height: 220px;
    }
    
    .hero-bottle {
        width: 100px;
        height: 160px;
    }
    
    .hero-thumbs img {
        width: 40px;
        height: 40px;
    }
    
    .products {
        padding: 5rem 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem !important;
    }
    
    .product-image {
        height: 250px;
    }
    
    .about {
        padding: 5rem 0;
    }
    
    .about-image > div {
        height: 420px !important;
    }
    
    .contact {
        padding: 5rem 0;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .dashboard-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem;
    }
}

/* ============================================
   LARGE DESKTOPS: 1441px+
   ============================================ */
@media (min-width: 1441px) {
    .container {
        max-width: 1400px;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 2.5rem !important;
    }
    
    .dashboard-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* ============================================
   LANDSCAPE ORIENTATION FIXES
   ============================================ */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 5rem 1rem 2rem;
    }
    
    .perfume-bottle {
        width: 150px;
        height: 200px;
    }
    
    .bottle-window {
        width: 120px;
        height: 160px;
    }
}

/* ============================================
   ACCESSIBILITY & TOUCH IMPROVEMENTS
   ============================================ */
@media (hover: none) and (pointer: coarse) {
    /* Touch device optimizations */
    a, button, .btn, .product-card {
        -webkit-tap-highlight-color: rgba(212, 175, 55, 0.2);
    }
    
    /* Larger touch targets */
    .nav-menu a,
    .btn,
    .add-to-cart,
    .add-to-wishlist,
    .cta-button {
        min-height: 48px;
        min-width: 48px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .navbar,
    .hamburger,
    .footer,
    .cta-button,
    .add-to-cart,
    .add-to-wishlist {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero,
    .products,
    .about,
    .contact {
        page-break-inside: avoid;
    }
}

/* Panel Styles */
.panel-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem 0;
}

.panel-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.panel-header {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #1a1a1a;
    padding: 2rem;
    text-align: center;
}

.panel-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.panel-header p {
    color: #1a1a1a;
    font-weight: 500;
}

.panel-nav {
    background: rgba(255,255,255,0.05);
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.panel-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.panel-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.panel-nav a:hover,
.panel-nav a.active {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #1a1a1a;
}

.panel-content {
    padding: 2rem;
    background: transparent;
}

.panel-content .section h2 {
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.panel-content .section {
    color: #fff;
}

.panel-content .section p {
    color: #ccc;
}

.panel-content .section label {
    color: #d4af37;
}

.panel-content .section input,
.panel-content .section select,
.panel-content .section textarea {
    color: #fff;
    background: rgba(255,255,255,0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.panel-content .section input::placeholder,
.panel-content .section textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.dashboard-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(212, 175, 55, 0.5);
}

.dashboard-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #d4af37;
}

.dashboard-card p {
    color: #ccc;
    opacity: 0.9;
}

.dashboard-card i {
    color: #d4af37;
}

.data-table {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.data-table table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    background: rgba(212, 175, 55, 0.1);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #d4af37;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.data-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    color: #fff;
}

.data-table tr:hover {
    background: rgba(255,255,255,0.05);
}

.data-table h2,
.data-table h3 {
    color: #d4af37;
}

.data-table p {
    color: #ccc;
}

.btn {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-danger {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.btn-success {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #d4af37;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 0.95rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4af37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: #1a1a1a;
    color: #fff;
}

.modal-content form button[type="submit"] {
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1a1a1a;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    align-self: center;
    min-width: 200px;
    font-family: 'Poppins', sans-serif;
}

.modal-content form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #b8941f, #d4af37);
}

.modal-content form button[type="submit"]:active {
    transform: translateY(0);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    padding: 20px 0;
}

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

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    margin: auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    overflow: hidden;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
        margin: 10px auto;
    }
    
    .modal-content h2 {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
        font-size: 1.5rem;
    }
    
    .modal-content form {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
    }
    
    .modal-content form button[type="submit"] {
        min-width: 100%;
        padding: 0.9rem 1.5rem;
    }
}

.modal-content h2 {
    padding: 2rem 2rem 1rem 2rem;
    margin: 0;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.modal-content form {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 2rem 2rem 2rem;
}

.modal-content form::-webkit-scrollbar {
    width: 8px;
}

.modal-content form::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.modal-content form::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 10px;
}

.modal-content form::-webkit-scrollbar-thumb:hover {
    background: #b8941f;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
    z-index: 10;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.close:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.2);
    transform: rotate(90deg);
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.cart-item-price {
    color: #d4af37;
    font-weight: 600;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-controls button {
    width: 30px;
    height: 30px;
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-controls button:hover {
    background: #d4af37;
    color: white;
}

.cart-total {
    text-align: right;
    padding: 1rem;
    border-top: 2px solid #eee;
    margin-top: 1rem;
}

.cart-total h3 {
    color: #333;
    font-size: 1.5rem;
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-pending {
    background: rgba(255,255,255,0.1);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.status-processing {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #1a1a1a;
}

.status-shipped {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.status-delivered {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
}

.status-danger {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

/* Admin Delete Button Styles */
.btn-danger {
    background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
    color: white !important;
    border: 1px solid rgba(231, 76, 60, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #c0392b, #a93226) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    border-color: rgba(231, 76, 60, 0.6);
}

.btn-danger:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.status-select option {
    background: #1a1a1a !important;
    color: #ffffff !important;
    padding: 12px 16px !important;
    font-weight: 600 !important;
    border: none !important;
    margin: 0 !important;
}

.status-select option:hover {
    background: #d4af37 !important;
    color: #1a1a1a !important;
}

.status-select option:checked,
.status-select option:selected {
    background: #d4af37 !important;
    color: #1a1a1a !important;
}

.status-select {
    padding: 8px 12px;
    border-radius: 15px;
    border: 2px solid #d4af37;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    text-transform: capitalize;
    transition: all 0.3s ease;
    background: #1a1a1a;
    color: #ffffff;
    min-width: 120px;
}

.status-select option {
    background: #1a1a1a !important;
    color: #ffffff !important;
    padding: 8px !important;
    font-weight: 600 !important;
}

.status-select.status-pending {
    background: #f39c12;
    color: white;
}

.status-select.status-processing {
    background: #3498db;
    color: white;
}

.status-select.status-shipped {
    background: #9b59b6;
    color: white;
}

.status-select.status-delivered {
    background: #27ae60;
    color: white;
}

.status-select.status-cancelled {
    background: #e74c3c;
    color: white;
}
