/* About Page */
.about-page { padding: 6rem 2rem 4rem; background: white; }
.about-container { max-width: 1200px; margin: 0 auto; }
.about-hero { text-align: center; margin-bottom: 2rem; }
.about-title { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 600; font-size: 2.4rem; margin: 0 0 .5rem; color: #333; position: relative; }
.about-title .glow { background: linear-gradient(90deg,#EACB65 0%, #F1D27A 50%, #EACB65 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.about-hero::after { content: ''; display: block; width: 120px; height: 3px; margin: .6rem auto 0; background: linear-gradient(90deg, transparent, #EACB65, #F1D27A, transparent); border-radius: 6px; }
.about-hero .sparkles { position: relative; height: 0; }
.about-hero .sparkles i { position: absolute; top: -18px; width: 6px; height: 6px; background: radial-gradient(circle, #F1D27A 0%, #EACB65 60%, rgba(234,203,101,.0) 70%); border-radius: 50%; filter: blur(.2px); animation: sparkle 3s ease-in-out infinite; }
.about-hero .sparkles i:nth-child(1){ left: 45%; animation-delay: .2s; }
.about-hero .sparkles i:nth-child(2){ left: 52%; animation-delay: .8s; }
.about-hero .sparkles i:nth-child(3){ left: 58%; animation-delay: 1.4s; }
.about-sub { color: #666; margin: 0; }
.about-sub { color: #666; margin: 0; }
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 1.5rem; align-items: center; margin-bottom: 2rem; }
.about-text .section-heading { margin: 0 0 .75rem; font-size: 1.2rem; font-weight: 700; color: #333; }
.about-image-card { background: #f7f7f7; border-radius: 16px; padding: 10px; display: grid; place-items: center; }
.about-image-card img { max-width: 100%; border-radius: 12px; }
.about-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
.about-card { background: #fff; border: 1px solid #f0ebd7; border-radius: 16px; padding: 1.1rem; text-align: center; box-shadow: 0 10px 26px rgba(0,0,0,.08); position: relative; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease;
}
.about-card::before { content: ''; position: absolute; inset: -2px; border-radius: 16px; padding: 2px; background: linear-gradient(135deg, rgba(234,203,101,.85), rgba(241,210,122,.85), rgba(234,203,101,.85)); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: .25; transition: opacity .25s ease; }
.about-card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(0,0,0,.12); }
.about-card:hover::before { opacity: .5; }
.about-card i { color: #EACB65; font-size: 1.5rem; margin-bottom: .5rem; }
.about-card h3 { margin: 0 0 .25rem; font-size: 1.05rem; }
.about-card p { margin: 0; color: #555; }
.about-cta { text-align: center; background: #faf8f1; border: 1px solid #f0ebd7; border-radius: 16px; padding: 1.25rem; }
.about-cta h2 { margin: 0 0 .75rem; font-size: 1.4rem; color: #333; }
.about-cta .pd-cta { box-shadow: 0 8px 24px rgba(234,203,101,.35); }

/* Subtle background sheen */
.about-page { position: relative; }
.about-page::before { content: ''; position: absolute; inset: 0; background: radial-gradient(600px 280px at 20% 10%, rgba(234,203,101,.06), transparent 60%), radial-gradient(500px 240px at 80% 20%, rgba(241,210,122,.06), transparent 60%); pointer-events: none; }

@keyframes sparkle {
  0%,100%{ transform: translateY(0) scale(1); opacity: .9; }
  50%{ transform: translateY(-8px) scale(1.15); opacity: .6; }
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr; }
}
/* Contact Page */
.contact-page { padding: 6rem 2rem 4rem; background: white; }
.contact-container { max-width: 1200px; margin: 0 auto; }
.contact-hero { text-align: center; margin-bottom: 2rem; }
.contact-title { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 600; font-size: 2.2rem; margin: 0 0 .25rem; color: #333; }
.contact-sub { color: #666; margin: 0; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 1.5rem; }
.contact-card, .contact-info-card { background: #fff; border: 1px solid #ececec; border-radius: 16px; padding: 1.25rem; box-shadow: 0 4px 15px rgba(0,0,0,.06); }
.contact-card-title { margin: 0 0 .75rem; font-size: 1.1rem; font-weight: 700; color: #333; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form .form-row { display: grid; gap: 6px; }
.contact-form .form-row.full { grid-column: 1 / -1; }
.contact-form label { font-weight: 600; font-size: 13px; color: #333; }
.contact-form input, .contact-form textarea { padding: 10px 12px; border: 1px solid #e3e4e6; border-radius: 10px; outline: none; background: #fff; font-weight: 500; }
.contact-form textarea { resize: vertical; }
.contact-form .form-actions { grid-column: 1 / -1; display: flex; justify-content: flex-end; }
.contact-list { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: 10px; color: #333; }
.contact-list i { width: 18px; color: #EACB65; margin-right: 6px; }
.contact-map iframe { width: 100%; height: 260px; border: 0; border-radius: 12px; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    overflow: visible;
}

/* Prevent logo duplication inside hero content */
.hero img[src*="logobeysehir"] { display: none !important; }

/* Space between fixed header and content */
.header-gap {
    height: 40px;
}

/* Header Decorative Elements */
.header-decoration {
    position: absolute;
    top: 0;
    z-index: -1;
    pointer-events: none;
}

/* Header Decorative Elements - Silver/Gray Theme */
.header-decoration .decoration-leaf {
    background: linear-gradient(45deg, #C0C0C0, #E8E8E8, #F5F5F5) !important;
    border: 1px solid #A0A0A0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.left-decoration {
    left: -50px;
    top: -20px;
}

.right-decoration {
    right: -50px;
    top: -20px;
}

.decoration-leaf {
    position: absolute;
    background: linear-gradient(45deg, #C0C0C0, #E8E8E8, #F5F5F5);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.8;
    animation: floatLeaf 6s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #A0A0A0;
    pointer-events: none;
}

.leaf-1 {
    width: 40px;
    height: 25px;
    top: 20px;
    left: 20px;
    animation-delay: 0s;
    transform: rotate(-15deg);
}

.leaf-2 {
    width: 35px;
    height: 22px;
    top: 45px;
    left: 50px;
    animation-delay: 1s;
    transform: rotate(25deg);
    background: linear-gradient(45deg, #B0B0B0, #D0D0D0, #F0F0F0);
}

.leaf-3 {
    width: 30px;
    height: 20px;
    top: 70px;
    left: 30px;
    animation-delay: 2s;
    transform: rotate(-30deg);
    background: linear-gradient(45deg, #A0A0A0, #C0C0C0, #E0E0E0);
    position: relative;
}

/* Leaf Circle */
.leaf-circle {
    position: absolute;
    top: 25px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: #808080;
    border-radius: 50%;
    z-index: 2;
}

/* Leaf Image */
.leaf-image {
    position: absolute;
    top: 50px;
    left: -15px;
    z-index: 3;
}

.header-plant-image {
    width: 40px;
    height: 50px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.leaf-4 {
    width: 45px;
    height: 28px;
    top: 15px;
    right: 30px;
    animation-delay: 0.5s;
    transform: rotate(20deg);
    background: linear-gradient(45deg, #C0C0C0, #E8E8E8, #F8F8F8);
}

.leaf-5 {
    width: 38px;
    height: 24px;
    top: 50px;
    right: 60px;
    animation-delay: 1.5s;
    transform: rotate(-25deg);
    background: linear-gradient(45deg, #B8B8B8, #D8D8D8, #F0F0F0);
}

.leaf-6 {
    width: 32px;
    height: 20px;
    top: 75px;
    right: 40px;
    animation-delay: 2.5s;
    transform: rotate(35deg);
    background: linear-gradient(45deg, #A8A8A8, #C8C8C8, #E8E8E8);
}

@keyframes floatLeaf {
    0%, 100% {
        transform: translateY(0px) rotate(var(--rotation, 0deg));
    }
    50% {
        transform: translateY(-10px) rotate(var(--rotation, 0deg));
    }
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1002;
}

.nav-links {
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 1003;
}

/* Dropdown */
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-item .fa-chevron-down {
    font-size: 0.75rem;
    margin-left: 6px;
}

.has-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 8px;
    display: none;
    z-index: 1101;
}

.has-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: background-color .2s ease, color .2s ease, transform .08s ease;
}

.dropdown-thumb {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #ececec;
}

.dropdown-item i {
    color: #EACB65;
    width: 18px;
}

.dropdown-item:hover {
    background: #f5f7f4;
    color: #2e7d32;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 6px;
    transition: color 0.25s ease;
    z-index: 1004;
    pointer-events: auto;
}

.nav-link:hover { color: #EACB65; }

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #EACB65;
    transition: width 0.25s ease;
    pointer-events: none;
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-link.active { color: #EACB65; }

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.2rem;
    color: #333;
    position: relative;
}

.logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: block;
}

/* Hero logo removed */

.logo-plant {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 3px solid #EACB65;
    transition: transform 0.3s ease;
}

.logo-plant:hover {
    transform: scale(1.1);
}

.logo-icon {
    color: #EACB65;
    font-size: 1.5rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1003;
}

.action-btn {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #333;
    cursor: pointer;
    padding: 0.6rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background-color: #f0f0f0;
    transform: scale(1.1);
}

.action-btn .fa-instagram:hover {
    color: #E4405F;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.action-btn .fa-whatsapp:hover {
    color: #25D366;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: #EACB65;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 4rem 2rem;
    background: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Hero Decorative Plants */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.decorative-plant {
    position: absolute;
    opacity: 0.7;
    animation: gentleSway 8s ease-in-out infinite;
}

.decorative-pot-1, .decorative-pot-2, .decorative-pot-3, 
.decorative-pot-4, .decorative-pot-5 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #708090, #A0A0A0, #C0C0C0);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid #696969;
}

.decorative-leaves-1, .decorative-leaves-2, .decorative-leaves-3, 
.decorative-leaves-4, .decorative-leaves-5 {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.decorative-leaves-1 {
    width: 45px;
    height: 30px;
    background: linear-gradient(45deg, #C0C0C0, #E8E8E8, #F5F5F5);
    animation-delay: 0s;
}

.decorative-leaves-2 {
    width: 50px;
    height: 35px;
    background: linear-gradient(45deg, #B0B0B0, #D0D0D0, #F0F0F0);
    animation-delay: 1s;
}

.decorative-leaves-3 {
    width: 40px;
    height: 28px;
    background: linear-gradient(45deg, #A0A0A0, #C0C0C0, #E0E0E0);
    animation-delay: 2s;
}

.decorative-leaves-4 {
    width: 55px;
    height: 32px;
    background: linear-gradient(45deg, #D0D0D0, #F0F0F0, #F8F8F8);
    animation-delay: 1.5s;
}

.decorative-leaves-5 {
    width: 48px;
    height: 30px;
    background: linear-gradient(45deg, #B8B8B8, #D8D8D8, #F0F0F0);
    animation-delay: 0.5s;
}

/* Plant Positions */
.top-left-plant {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

/* Curved Image */
.curved-image {
    position: absolute;
    top: 80px;
    left: -20px;
    z-index: 2;
}

.curved-plant-image {
    width: 180px;
    height: 220px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    border: none;
    transform: rotate(-25deg) skew(-10deg, 5deg);
    opacity: 0.9;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.top-right-plant {
    top: 30px;
    right: 30px;
    animation-delay: 1s;
}

/* Curved Image Top Right */
.curved-image-top-right {
    position: absolute;
    top: 80px;
    right: -20px;
    z-index: 2;
}

.curved-plant-image-top-right {
    width: 170px;
    height: 210px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    border: none;
    transform: rotate(20deg) skew(-5deg, 8deg);
    opacity: 0.88;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.22));
}

.bottom-left-plant {
    bottom: 40px;
    left: 40px;
    animation-delay: 2s;
}

/* Curved Image Bottom */
.curved-image-bottom {
    position: absolute;
    bottom: -60px;
    left: -30px;
    z-index: 2;
}

.curved-plant-image-bottom {
    width: 160px;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    border: none;
    transform: rotate(15deg) skew(8deg, -3deg);
    opacity: 0.85;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
}

.bottom-right-plant {
    bottom: 50px;
    right: 50px;
    animation-delay: 1.5s;
}

.top-center-plant {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.5s;
}

@keyframes gentleSway {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(2deg);
    }
    50% {
        transform: translateY(-8px) rotate(0deg);
    }
    75% {
        transform: translateY(-5px) rotate(-2deg);
    }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.8fr 1.1fr; /* widen center text column */
    gap: 1.25rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 100%;
}

.hero-title {
    max-width: 100%;
}

.hero-description {
    max-width: 90%;
}

/* Diagonal Top Image */
.hero-diagonal-image {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%) rotate(-15deg);
    z-index: 1;
}

.diagonal-plant-image {
    width: 180px;
    height: 220px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    border: none;
    opacity: 0.8;
}

/* Left Plant Image */
.hero-left-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-plant-image {
    width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    line-height: 1.15;
    letter-spacing: 0.3px;
    margin-bottom: 1.5rem;
    color: #333;
    text-rendering: optimizeLegibility;
}

.highlight {
    color: #EACB65;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-button {
    background: #666;
    color: white;
    text-decoration: none;
    display: inline-block;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 203, 101, 0.3);
}

.cta-button:hover,
.cta-button:focus,
.cta-button:active,
.cta-button:visited {
    background: #F1D27A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 203, 101, 0.4);
    text-decoration: none;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plant-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Hanging Plant */
.hanging-plant {
    position: absolute;
    top: 20px;
    right: 50px;
    z-index: 2;
}

.hanging-pot {
    width: 80px;
    height: 80px;
    background: linear-gradient(180deg, #708090 0%, #A0A0A0 50%, #C0C0C0 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: swing 3s ease-in-out infinite;
    border: 2px solid #696969;
}

.hanging-leaves {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 45px;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 70 45"><defs><radialGradient id="hangingGrad1" cx="20%" cy="30%" r="60%"><stop offset="0%" style="stop-color:%23c0c0c0;stop-opacity:1" /><stop offset="70%" style="stop-color:%23808080;stop-opacity:1" /><stop offset="100%" style="stop-color:%23404040;stop-opacity:1" /></radialGradient><radialGradient id="hangingGrad2" cx="80%" cy="20%" r="50%"><stop offset="0%" style="stop-color:%23e0e0e0;stop-opacity:1" /><stop offset="60%" style="stop-color:%23a0a0a0;stop-opacity:1" /><stop offset="100%" style="stop-color:%23606060;stop-opacity:1" /></radialGradient></defs><ellipse cx="25" cy="15" rx="20" ry="12" fill="url(%23hangingGrad1)"/><ellipse cx="50" cy="20" rx="18" ry="10" fill="url(%23hangingGrad2)"/><ellipse cx="35" cy="30" rx="15" ry="8" fill="url(%23hangingGrad1)"/></svg>'),
        radial-gradient(ellipse at 20% 30%, #c0c0c0 0%, #808080 70%, #404040 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: leafSway 2s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Potted Plant */
.potted-plant {
    position: absolute;
    bottom: 50px;
    right: 30px;
    z-index: 1;
}

.plant-hands {
    position: absolute;
    bottom: -10px;
    left: -20px;
    width: 40px;
    height: 20px;
    background: #f4a261;
    border-radius: 20px;
    z-index: -1;
}

.potted-pot {
    width: 300px;
    height: 360px;
    background: transparent;
    border-radius: 0;
    position: relative;
    box-shadow: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.plant-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

/* Plant Statistics */
.plant-stats {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.plant-stats .stat-item {
    text-align: center;
    color: #333;
}

.plant-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #EACB65;
    margin-bottom: 5px;
}

.plant-stats .stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #666;
}

/* Floating Info Cards */
.info-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    animation: float 4s ease-in-out infinite;
}

.weather-card {
    top: 100px;
    left: 50px;
    animation-delay: 0s;
}

.humidity-card {
    top: 200px;
    left: 20px;
    animation-delay: 1s;
}

.air-card {
    bottom: 150px;
    left: 80px;
    animation-delay: 2s;
}

.info-card i {
    font-size: 1.5rem;
    color: #EACB65;
}

.info-card span {
    font-weight: 600;
    color: #333;
}

.info-card small {
    font-size: 0.8rem;
    color: #666;
}

/* Pagination */
.pagination {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #666;
}

.current {
    font-weight: 600;
    color: #333;
}

/* Statistics Section */
.statistics {
    background: #EACB65;
    padding: 3rem 2rem;
    margin: 2rem 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 400;
}

/* Products Section */
.products {
    padding: 4rem 2rem;
    background: white;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* New 4-Column Grid */
.products-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.product-item-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.product-image-new {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    border: none;
    margin-bottom: 1rem;
}

.product-name-new {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Plant Categories Section */
.plant-categories {
    padding: 4rem 2rem;
    background: white;
}

.categories-container {
    max-width: 1200px;
    margin: 0 auto;
}

.categories-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.categories-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-plant-image {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.category-card {
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(234, 203, 101, 0.2);
    border-color: #EACB65;
}

.green-card {
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 4px 15px rgba(0,0,0,.06);
}

.orange-card {
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 4px 15px rgba(0,0,0,.06);
}

.pink-card {
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 4px 15px rgba(0,0,0,.06);
}

.blue-card {
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 4px 15px rgba(0,0,0,.06);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    background: #EACB65;
    color: white;
    transition: transform 0.3s ease;
}

.category-card:hover .card-icon {
    transform: scale(1.1);
}

.green-card .card-icon {
    background: #EACB65;
    color: white;
}

.orange-card .card-icon {
    background: #EACB65;
    color: white;
}

.pink-card .card-icon {
    background: #EACB65;
    color: white;
}

.blue-card .card-icon {
    background: #EACB65;
    color: white;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
}

.card-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #2d2e2d 0%, #aaadaa 50%, #90928e 100%);
    color: white;
    padding: 3rem 0 0;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    font-size: 2rem;
    color: #8BC34A;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #EACB65;
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #EACB65;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.8rem;
}

.footer-link {
    color: rgba(18 16 16 / 80%);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #EACB65;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-item i {
    width: 20px;
    color: #EACB65;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #8BC34A;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.plant {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.snake-plant {
    background: 
        linear-gradient(90deg, #4CAF50 0%, #8BC34A 25%, #4CAF50 50%, #2E7D32 75%, #4CAF50 100%);
    position: relative;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.snake-plant::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 45px;
    background: 
        radial-gradient(ellipse at 30% 20%, #2E7D32 0%, #4CAF50 50%, #8BC34A 100%),
        radial-gradient(ellipse at 70% 30%, #4CAF50 0%, #2E7D32 50%, #1B5E20 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.succulents {
    background: 
        radial-gradient(circle at 30% 30%, #4CAF50 0%, #8BC34A 30%, #CDDC39 60%, #4CAF50 100%);
    position: relative;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.succulents::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 25%;
    width: 35px;
    height: 35px;
    background: 
        radial-gradient(circle at 40% 40%, #2E7D32 0%, #4CAF50 50%, #8BC34A 100%);
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.succulents::after {
    content: '';
    position: absolute;
    top: -15px;
    right: 25%;
    width: 30px;
    height: 30px;
    background: 
        radial-gradient(circle at 30% 30%, #4CAF50 0%, #8BC34A 50%, #CDDC39 100%);
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.cactus {
    background: 
        linear-gradient(180deg, #4CAF50 0%, #8BC34A 50%, #4CAF50 100%);
    position: relative;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cactus::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 60px;
    background: 
        linear-gradient(180deg, #2E7D32 0%, #4CAF50 30%, #8BC34A 70%, #2E7D32 100%);
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.product-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 500;
    color: #8e6d45;
}

/* Animations */
@keyframes swing {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

@keyframes leafSway {
    0%, 100% { transform: translateX(-50%) rotate(-2deg); }
    50% { transform: translateX(-50%) rotate(2deg); }
}

@keyframes leafGrow {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hamburger */
    .hamburger { display: inline-flex; flex-direction: column; justify-content: center; align-items: center; width: 42px; height: 42px; border: 1px solid #e6e6e8; border-radius: 10px; background: #fff; cursor: pointer; margin-right: 8px; z-index: 1101; }
    .hamburger span { display: block; width: 22px; height: 2px; background: #333; margin: 3px 0; transition: transform .2s ease, opacity .2s ease; }
    body.menu-open .hamburger span:nth-child(1){ transform: translateY(5px) rotate(45deg); }
    body.menu-open .hamburger span:nth-child(2){ opacity: 0; }
    body.menu-open .hamburger span:nth-child(3){ transform: translateY(-5px) rotate(-45deg); }

    .nav { justify-content: flex-start; position: relative; }
    .nav-links { position: fixed; top: 0; right: 0; height: 100%; width: 80%; max-width: 320px; background: #fff; padding: 70px 16px 16px; box-shadow: -12px 0 24px rgba(0,0,0,.12); transform: translateX(100%); transition: transform .28s ease; z-index: 1100; display: block; }
    body.menu-open .nav-links { transform: translateX(0); }
    .nav-links .nav-link, .nav-links .nav-item { display: block; margin: 12px 0; }
    .nav-links .dropdown-menu { position: static; box-shadow: none; border: none; padding: 0; }

    .mobile-backdrop { display: none; }
    body.menu-open .mobile-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 1099; }

    /* Three-part layout: left icons, center logo, right hamburger */
    .nav-actions { order: 1; display: inline-flex; gap: 8px; z-index: 1101; }
    .hamburger { order: 3; margin-left: auto; }
    .logo { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
    .logo-img { height: 48px; }
    .action-btn { padding: 8px; }

    .header-decoration { display: none; }
    
    .nav { padding: 1rem; }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero { margin-top: 64px; padding: 2rem 1rem; min-height: auto; position: relative; }
    .hero-content { grid-template-columns: 1fr; gap: 1rem; text-align: center; position: relative; z-index: 2; padding-top: 0; }
    /* After CTA (Shop Now), show plant image block and then counters */
    .hero-visual { position: static; transform: none; height: auto; opacity: 1; z-index: 1; margin-top: 12px; }
    /* Show pots as faint background */
    .hero-decorations { display: block; opacity: .08; z-index: 0; }
    .hero-decorations .decorative-plant { filter: grayscale(100%); }
    .hero-diagonal-image { display: none; }
    .left-plant-image { width: 180px; height: 220px; }
    
    .hero-title { font-size: 2.2rem; }

    /* Plant visual centering & compaction */
    .plant-container { display:flex; align-items:center; justify-content:center; height: 100%; }
    .potted-plant { position: static; transform: none !important; }
    .hanging-plant { display: none; }
    .potted-pot { width: 230px; height: 230px; background: transparent; box-shadow: none; border: none; display:flex; align-items:center; justify-content:center; margin: 0 auto; }
    .plant-image { width: 100%; height: 100%; object-fit: contain; }
    .plant-stats { position: static; left: auto; bottom: auto; transform: none; margin: 10px auto 0; }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .categories-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hanging-plant {
        right: 20px;
    }
    
    .potted-plant {
        right: 10px;
    }
    
    .info-card {
        position: static;
        margin: 1rem;
        animation: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .products {
        padding: 2rem 1rem;
    }
}

/* Products Page (urun.html) */
.products-page {
    padding: 6rem 2rem 4rem; /* leave space for fixed header */
    background: white;
}

.products-page-container {
    max-width: 1200px;
    margin: 0 auto;
}

.products-page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.products-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: transparent;
}

.product-tile-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0.75rem;
}

.product-tile-name {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-tile-cta {
    display: inline-block;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    background: #EACB65;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.product-tile-cta:hover {
    background: #F1D27A;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(234, 203, 101, 0.35);
}

@media (max-width: 1024px) {
    .products-page-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .products-page { padding: 5rem 1rem 3rem; }
    .products-page-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .products-page-grid { grid-template-columns: 1fr; }
}

/* Product Detail (urun-detay.html) */
.product-detail { padding: 6rem 2rem 4rem; background: white; }
.product-detail-container { max-width: 1200px; margin: 0 auto; }
.product-detail-grid { display: grid; grid-template-columns: 1.2fr 1.2fr 0.8fr; gap: 2rem; align-items: start; }

/* Gallery */
.pd-gallery-main { width: 100%; aspect-ratio: 1/1; background: #f3f3f3; display: flex; align-items: center; justify-content: center; border-radius: 12px; }
.pd-gallery-main img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; margin-top: 0.75rem; }
.pd-thumb { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 10px; cursor: pointer; opacity: 0.7; border: 2px solid transparent; }
.pd-thumb.active, .pd-thumb:hover { opacity: 1; border-color: #EACB65; }

/* Info */
.pd-title { font-size: 1.6rem; font-weight: 700; color: #333; margin-bottom: 0.5rem; }
.pd-rating { color: #ffb703; margin-bottom: 0.25rem; }
.pd-rating .count { color: #666; margin-left: 6px; font-size: 0.95rem; }
.pd-price-row { display: flex; align-items: center; justify-content: space-between; margin: 0.75rem 0 1rem; }
.pd-price { font-size: 1.8rem; font-weight: 700; color: #333; }
.pd-cta { background: #EACB65; color: white; border: none; border-radius: 999px; padding: 0.7rem 1.2rem; font-weight: 600; cursor: pointer; }
.pd-cta:hover { background: #F1D27A; }

.pd-options { display: grid; gap: 0.75rem; margin: 1rem 0; }
.pd-option { display: flex; align-items: center; gap: 0.75rem; }
.pd-option .label { color: #555; min-width: 52px; font-weight: 600; }
.swatches { display: flex; gap: 0.5rem; }
.swatch { width: 26px; height: 26px; border-radius: 50%; border: 2px solid #ddd; cursor: pointer; }
.swatch--silver { background: linear-gradient(135deg,#bfbfbf,#e6e6e6); }
.swatch--anthracite { background: linear-gradient(135deg,#2f2f31,#5a5a5f); }
.swatch--white { background: linear-gradient(135deg,#ffffff,#f7f7f7); border-color: #ccc; }
.sizes { display: flex; gap: 0.5rem; }
.size { padding: 0.4rem 0.8rem; border-radius: 999px; border: 1px solid #ddd; background: white; cursor: pointer; font-weight: 600; }
.size.active, .size:hover { border-color: #EACB65; color: #F1D27A; }

.pd-highlights { margin: 1rem 0 0; padding-left: 1.1rem; color: #555; }
.pd-highlights li { margin-bottom: 0.4rem; }

/* Specs */
.pd-specs { background: #f7f7f7; border-radius: 12px; padding: 1rem; }
.pd-specs h3 { margin: 0 0 0.8rem; font-size: 1.05rem; }
.spec-list { display: grid; gap: 0.5rem; }
.spec-list div { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; font-size: 0.95rem; }
.spec-list dt { color: #666; }
.spec-list dd { color: #333; margin: 0; }

/* Tabs */
.pd-tabs { display: flex; gap: 0.5rem; margin-top: 2rem; }
.pd-tab { background: #efefef; border: 1px solid #e3e3e3; border-radius: 999px; padding: 0.5rem 1rem; cursor: pointer; font-weight: 600; color: #333; }
.pd-tab.active, .pd-tab:hover { background: #EACB65; color: white; border-color: #EACB65; }
.pd-tab-panels { margin-top: 1rem; }
.pd-panel { display: none; color: #555; background: #fafafa; border: 1px solid #eee; border-radius: 12px; padding: 1rem; }
.pd-panel.active { display: block; }

@media (max-width: 1024px) {
  .product-detail-grid { grid-template-columns: 1fr 1fr; }
  .pd-specs { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .product-detail { padding: 5rem 1rem 3rem; }
  .product-detail-grid { grid-template-columns: 1fr; }
}

/* Admin app (admin/index.html) */
.admin-app { background: #f6f7f8; color: #222; }
.admin-app .layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-app .sidebar { background: linear-gradient(180deg, #232326 0%, #1a1a1d 100%); color: #e9e9ea; padding: 18px 14px; position: sticky; top: 0; min-height: 100vh; height: auto; border-right: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; }
.admin-app .brand { display: flex; align-items: center; gap: 10px; padding: 8px 10px; }
.admin-app .brand i { color: #6B9E4C; font-size: 20px; }
.admin-app .brand span { font-weight: 700; letter-spacing: .2px; }
.admin-app .nav-group { margin-top: 18px; }
.admin-app .nav-label { color: #a6a6ab; font-size: 12px; letter-spacing: .6px; padding: 10px 12px; text-transform: uppercase; }
.admin-app .nav { display: grid; gap: 6px; }
.admin-app .nav a { display: flex; align-items: center; gap: 10px; color: #e9e9ea; text-decoration: none; font-weight: 500; padding: 10px 12px; border-radius: 10px; transition: background .2s ease, color .2s ease, transform .08s ease; }
.admin-app .nav a i { width: 18px; color: #a6a6ab; }
.admin-app .nav a:hover { background: rgba(255,255,255,.06); transform: translateY(-1px); }
.admin-app .nav a.active { background: rgba(107,158,76,.18); color: #fff; }
.admin-app .nav a.active i { color: #6B9E4C; }
.admin-app .sidebar-bottom { margin-top: auto; padding: 12px; border-top: 1px dashed rgba(255,255,255,.08); }
.admin-app .profile { display: flex; align-items: center; gap: 10px; }
.admin-app .avatar { width: 36px; height: 36px; border-radius: 50%; background: #2a2a2d; display: grid; place-items: center; color: #a6a6ab; }
.admin-app .profile .meta { display: grid; }
.admin-app .profile .name { font-size: 13px; color: #e9e9ea; font-weight: 600; }
.admin-app .profile .role { font-size: 11px; color: #a6a6ab; }
.admin-app .main { padding: 22px; }
.admin-app .topbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.admin-app .search { flex: 1; max-width: 520px; position: relative; }
.admin-app .search input { width: 100%; padding: 10px 12px 10px 36px; border-radius: 10px; border: 1px solid #e6e7e8; outline: none; background: #fff; font-weight: 500; }
.admin-app .search i { position: absolute; left: 10px; top: 10px; color: #9aa1a9; }
.admin-app .actions { display: flex; gap: 8px; }
.admin-app .btn { padding: 9px 12px; border: 1px solid #e6e7e8; border-radius: 10px; background: #fff; cursor: pointer; font-weight: 600; }
.admin-app .btn.primary { background: #6B9E4C; border-color: #6B9E4C; color: #fff; }
.admin-app .cards { display: grid; grid-template-columns: repeat(3, minmax(220px, 1fr)); gap: 14px; }
.admin-app .card { background: #fff; border: 1px solid #ececec; border-radius: 14px; padding: 16px; }
.admin-app .card h3 { margin: 0 0 6px; font-size: 15px; }
.admin-app .metric { font-size: 26px; font-weight: 700; }
@media (max-width: 1024px) {
  .admin-app .layout { grid-template-columns: 220px 1fr; }
  .admin-app .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .admin-app .layout { grid-template-columns: 64px 1fr; }
  .admin-app .nav a span, .admin-app .brand span { display: none; }
  .admin-app .cards { grid-template-columns: 1fr; }
}

/* Admin forms */
.admin-app .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
.admin-app .form-field { display: grid; gap: 6px; }
.admin-app .form-field.full { grid-column: 1 / -1; }
.admin-app label { font-weight: 600; font-size: 13px; color: #333; }
.admin-app input[type="text"],
.admin-app input[type="file"] { padding: 10px 12px; border: 1px solid #e3e4e6; border-radius: 10px; outline: none; background: #fff; font-weight: 500; }
.admin-app .image-preview { margin-top: 8px; border: 1px dashed #d6d6d9; border-radius: 12px; padding: 10px; color: #777; display: grid; place-items: center; min-height: 140px; background: #fafafa; }
.admin-app .image-preview img { max-width: 100%; max-height: 220px; border-radius: 10px; display: block; }
.admin-app .form-actions { grid-column: 1 / -1; display: flex; gap: 10px; justify-content: flex-end; margin-top: 4px; }

/* Admin tables */
.admin-app .table-wrapper { width: 100%; overflow-x: auto; }
.admin-app .data-table { width: 100%; border-collapse: collapse; }
.admin-app .data-table thead th { text-align: left; font-size: 12px; letter-spacing: .3px; color: #666; padding: 10px 8px; border-bottom: 1px solid #ececec; }
.admin-app .data-table tbody td { padding: 10px 8px; border-bottom: 1px solid #f0f0f0; vertical-align: middle; }
.admin-app .data-table .thumb { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; border: 1px solid #e9e9ea; }

/* Admin product extra UI */
.admin-app .feature-add { display: flex; gap: 8px; }
.admin-app .feature-add input { flex: 1; }
.admin-app .tag-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 8px 0 0; margin: 0; }
.admin-app .tag { display: inline-flex; align-items: center; gap: 6px; background: #eef3e9; color: #2e7d32; border: 1px solid #dbe8cf; border-radius: 999px; padding: 6px 10px; font-weight: 600; }
.admin-app .tag button { background: transparent; border: none; cursor: pointer; font-size: 16px; line-height: 1; color: #2e7d32; }
.admin-app textarea { padding: 10px 12px; border: 1px solid #e3e4e6; border-radius: 10px; background: #fff; font-weight: 500; resize: vertical; }
.admin-app .thumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.admin-app .thumb-btn { border: 2px solid transparent; padding: 0; background: #fff; border-radius: 10px; cursor: pointer; }
.admin-app .thumb-btn.active { border-color: #6B9E4C; box-shadow: 0 0 0 3px rgba(107,158,76,.18); }
.admin-app .thumb-btn img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; display: block; }
.admin-app .mini-gallery { display: inline-flex; align-items: center; gap: 6px; }
.admin-app .thumb-mini { width: 36px; height: 36px; object-fit: cover; border-radius: 6px; border: 1px solid #e6e6e8; display: inline-block; }
.admin-app .more-badge { background: #eef3e9; color: #2e7d32; border: 1px solid #dbe8cf; border-radius: 999px; padding: 2px 8px; font-size: 12px; font-weight: 700; display: inline-block; }

/* Admin modal */
.admin-app .admin-modal { position: fixed; inset: 0; z-index: 1000; }
.admin-app .admin-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.45); backdrop-filter: blur(2px); }
.admin-app .admin-modal-card { position: relative; z-index: 1001; width: min(900px, 92vw); margin: 6vh auto; background: #fff; border-radius: 16px; border: 1px solid #ececec; box-shadow: 0 20px 50px rgba(0,0,0,0.2); max-height: 88vh; display: flex; flex-direction: column; }
.admin-app .admin-modal-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid #eee; }
.admin-app .admin-modal-header h3 { margin: 0; font-size: 16px; }
.admin-app .admin-modal-close { background: transparent; border: none; font-size: 22px; line-height: 1; cursor: pointer; color: #777; }
.admin-app .admin-modal-body { padding: 16px; overflow: auto; }
.admin-app .preview-wrap { position: relative; display: inline-block; }
.admin-app .img-remove { position: absolute; top: 6px; right: 6px; width: 24px; height: 24px; border-radius: 50%; border: none; background: rgba(0,0,0,0.6); color: #fff; cursor: pointer; line-height: 1; display: grid; place-items: center; }
.admin-app .img-remove:hover { background: rgba(0,0,0,0.8); }
