/* ============================================
   ORNAKI FASHION - Premium Jewelry Website
   Brand: Deep Purple (#3D1B4E) + Gold (#C9A961)
   ============================================ */

:root {
    --primary: #3D1B4E;
    --primary-dark: #2A1136;
    --primary-light: #5A2D70;
    --gold: #C9A961;
    --gold-light: #E0C589;
    --gold-dark: #A88842;
    --cream: #FAF6F0;
    --white: #FFFFFF;
    --grey-100: #F8F6F4;
    --grey-200: #E8E4DF;
    --grey-400: #9A9A9A;
    --grey-600: #5A5A5A;
    --text: #2A1136;
    --text-light: #6B5C70;
    --shadow-sm: 0 4px 12px rgba(61, 27, 78, 0.08);
    --shadow-md: 0 10px 30px rgba(61, 27, 78, 0.12);
    --shadow-lg: 0 20px 60px rgba(61, 27, 78, 0.18);
    --gradient-purple: linear-gradient(135deg, #3D1B4E 0%, #5A2D70 100%);
    --gradient-gold: linear-gradient(135deg, #C9A961 0%, #E0C589 100%);
    --font-serif: 'Cormorant Garamond', serif;
    --font-display: 'Cinzel', serif;
    --font-sans: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.gold-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

/* ============ Preloader ============ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-ring {
    width: 70px;
    height: 70px;
    border: 3px solid var(--grey-200);
    border-top-color: var(--gold);
    border-right-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    font-family: var(--font-display);
    color: var(--primary);
    letter-spacing: 8px;
    font-size: 18px;
    font-weight: 500;
    animation: pulse 1.5s ease infinite;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ============ Announcement Bar ============ */
.announcement-bar {
    background: var(--gradient-purple);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    overflow: hidden;
    position: relative;
}

.marquee {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.marquee i {
    color: var(--gold);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============ Header ============ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(61, 27, 78, 0.06);
    transition: var(--transition);
}

.header.scrolled {
    padding: 4px 0;
    background: rgba(255, 255, 255, 0.98);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    gap: 32px;
}

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

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.header.scrolled .logo-img {
    height: 42px;
}

.nav-menu {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-link {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 17px;
    border-radius: 50%;
    transition: var(--transition);
    position: relative;
}

.nav-icon:hover {
    background: var(--cream);
    color: var(--gold-dark);
    transform: translateY(-2px);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

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

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

/* ============ Hero Section ============ */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--cream);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(61, 27, 78, 0.1) 0%, transparent 50%),
        var(--cream);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(61, 27, 78, 0.08) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 24px;
    z-index: 1;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 169, 97, 0.15);
    color: var(--gold-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(201, 169, 97, 0.3);
}

.hero-tagline i {
    color: var(--gold);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(48px, 7vw, 92px);
    font-weight: 600;
    line-height: 1;
    color: var(--primary);
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-purple);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(61, 27, 78, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: left 0.4s ease;
    z-index: 0;
}

.btn-primary span,
.btn-primary i {
    position: relative;
    z-index: 1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat-item h3 {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-item h3::after {
    content: '+';
    color: var(--gold);
}

.stat-item p {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.hero-visual {
    position: relative;
    height: 600px;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 200px 200px 30px 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 8s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 27, 78, 0.2) 0%, transparent 50%);
}

.hero-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--white);
    padding: 18px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.hero-badge i {
    color: var(--gold);
    font-size: 28px;
}

.hero-badge strong {
    display: block;
    color: var(--primary);
    font-size: 15px;
    font-family: var(--font-serif);
    font-weight: 600;
}

.hero-badge span {
    color: var(--text-light);
    font-size: 12px;
}

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

.floating-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.circle-1 {
    width: 120px;
    height: 120px;
    border: 2px dashed var(--gold);
    top: -20px;
    right: -20px;
    animation: rotate 20s linear infinite;
    opacity: 0.6;
}

.circle-2 {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    bottom: 60px;
    right: -40px;
    opacity: 0.15;
    animation: float 4s ease-in-out infinite;
}

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

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.scroll-down span {
    font-size: 11px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--gold);
    animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
    0% { top: -50%; }
    100% { top: 100%; }
}

/* ============ Trust Strip ============ */
.trust-strip {
    background: var(--primary);
    padding: 40px 0;
    color: var(--white);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item:last-child {
    border-right: none;
}

.trust-item i {
    font-size: 36px;
    color: var(--gold);
}

.trust-item h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 2px;
}

.trust-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* ============ Section Common ============ */
section {
    padding: 100px 0;
}

.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    padding: 0 24px;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 16px;
    height: 1px;
    background: var(--gold);
}

.section-label::before {
    left: 0;
}

.section-label::after {
    right: 0;
}

.section-label.light {
    color: var(--gold-light);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

/* ============ Categories ============ */
.categories {
    background: var(--white);
}

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

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    height: 280px;
}

.category-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.category-card:hover .category-img img {
    transform: scale(1.1);
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 27, 78, 0.85) 0%, rgba(61, 27, 78, 0.3) 50%, transparent 100%);
    z-index: 1;
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 28px;
    color: var(--white);
    z-index: 2;
    width: 100%;
}

.category-count {
    display: inline-block;
    background: var(--gold);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.category-info h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 6px;
}

.category-info p {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 14px;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-light);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-link:hover {
    color: var(--white);
    gap: 14px;
}

/* ============ Products ============ */
.products {
    background: var(--cream);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(61, 27, 78, 0.06) 1px, transparent 0);
    background-size: 30px 30px;
    pointer-events: none;
}

.products .container {
    position: relative;
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: 50px;
    background: transparent;
    color: var(--text-light);
    font-weight: 500;
    font-size: 14px;
    border: 1px solid var(--grey-200);
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--primary);
    border-color: var(--gold);
}

.tab-btn.active {
    background: var(--gradient-purple);
    color: var(--white);
    border-color: var(--primary);
}

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

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.product-card.hidden {
    display: none;
}

.product-img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--grey-100);
}

.product-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.8s ease;
}

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

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    border-radius: 20px;
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.product-badge.new {
    background: var(--primary);
}

.product-badge.sale {
    background: #D14F4F;
}

.product-badge.hot {
    background: var(--gold-dark);
}

.product-actions {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.product-actions button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    transform: translateX(60px);
    opacity: 0;
}

.product-card:hover .product-actions button {
    transform: translateX(0);
    opacity: 1;
}

.product-card:hover .product-actions button:nth-child(2) {
    transition-delay: 0.1s;
}

.product-card:hover .product-actions button:nth-child(3) {
    transition-delay: 0.2s;
}

.product-actions button:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-cart {
    position: absolute;
    bottom: -50px;
    left: 16px;
    right: 16px;
    padding: 12px;
    background: var(--primary);
    color: var(--white);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.product-card:hover .btn-cart {
    bottom: 16px;
}

.btn-cart:hover {
    background: var(--gold-dark);
}

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

.product-cat {
    color: var(--gold-dark);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.product-info h4 {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 600;
    margin: 8px 0 10px;
}

.product-info h4 a {
    color: var(--primary);
    transition: var(--transition);
}

.product-info h4 a:hover {
    color: var(--gold-dark);
}

.product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--gold);
    font-size: 13px;
    margin-bottom: 10px;
}

.product-rating span {
    color: var(--text-light);
    margin-left: 6px;
    font-size: 12px;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.product-price .current {
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
    font-family: var(--font-serif);
}

.product-price .old {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 14px;
}

.product-price .discount {
    color: #D14F4F;
    font-size: 11px;
    font-weight: 700;
    background: rgba(209, 79, 79, 0.1);
    padding: 2px 8px;
    border-radius: 20px;
}

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

/* ============ About ============ */
.about {
    background: var(--white);
}

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

.about-images {
    position: relative;
    height: 600px;
}

.about-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 70%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--white);
}

.about-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: 30%;
    right: -10px;
    z-index: 3;
}

.badge-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    animation: rotate 30s linear infinite;
}

.badge-num {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 4px;
}

.about-content .section-label::before,
.about-content .section-label::after {
    display: none;
}

.about-content .section-label {
    padding: 0;
    text-align: left;
    display: block;
}

.about-content .section-title {
    text-align: left;
}

.about-text {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--primary);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 36px 0;
}

.about-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.about-feature i {
    color: var(--gold);
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 4px;
}

.about-feature h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 13px;
    color: var(--text-light);
}

/* ============ Features ============ */
.features {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border: 100px solid var(--gold);
    border-radius: 50%;
    opacity: 0.05;
}

.features::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border: 80px solid var(--primary);
    border-radius: 50%;
    opacity: 0.05;
}

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

.feature-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-light);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-purple);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    position: relative;
    transition: var(--transition);
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px dashed var(--gold);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
    animation: rotate 4s linear infinite;
}

.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* ============ Testimonials ============ */
.testimonials {
    background: var(--white);
}

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

.testimonial-card {
    background: var(--cream);
    padding: 36px 30px;
    border-radius: 20px;
    position: relative;
    transition: var(--transition);
    border: 1px solid transparent;
}

.testimonial-card:hover {
    background: var(--white);
    border-color: var(--gold-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.quote-mark {
    position: absolute;
    top: 24px;
    right: 30px;
    color: var(--gold);
    opacity: 0.2;
    font-size: 48px;
}

.testimonial-rating {
    color: var(--gold);
    margin-bottom: 16px;
}

.testimonial-card p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    font-size: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-purple);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-serif);
}

.testimonial-author h4 {
    font-family: var(--font-serif);
    color: var(--primary);
    font-size: 17px;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 13px;
}

/* ============ Newsletter ============ */
.newsletter {
    padding: 60px 0;
    background: var(--cream);
}

.newsletter-box {
    background: var(--gradient-purple);
    border-radius: 30px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border: 2px dashed var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate 30s linear infinite;
}

.newsletter-box::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: var(--gradient-gold);
    border-radius: 50%;
    opacity: 0.1;
}

.newsletter-content {
    position: relative;
    color: var(--white);
    z-index: 1;
}

.newsletter-content h2 {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 600;
    line-height: 1.1;
    margin: 12px 0 14px;
}

.newsletter-content p {
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    position: relative;
    background: var(--white);
    padding: 6px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 16px 24px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    background: transparent;
    color: var(--text);
}

.newsletter-form button {
    background: var(--gradient-purple);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--gold-dark);
    transform: translateX(2px);
}

/* ============ Contact ============ */
.contact {
    background: var(--white);
}

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

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

.contact-card {
    background: var(--cream);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-card:hover {
    background: var(--white);
    border-color: var(--gold-light);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    background: var(--gradient-purple);
    color: var(--gold);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-card h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.contact-card p,
.contact-card a {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.contact-card a:hover {
    color: var(--gold-dark);
}

.social-links {
    display: flex;
    gap: 10px;
    padding: 10px 0;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 16px;
}

.social-links a:hover {
    background: var(--gradient-purple);
    color: var(--gold);
    transform: translateY(-4px);
}

.contact-form {
    background: var(--cream);
    padding: 40px;
    border-radius: 20px;
}

.contact-form h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

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

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

.form-row .form-group {
    margin-bottom: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--grey-200);
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    background: var(--white);
    color: var(--text);
    transition: var(--transition);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    background: #DFF6DD;
    color: #1E7A28;
    padding: 14px 18px;
    border-radius: 12px;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
}

.form-success i {
    font-size: 20px;
}

/* ============ Footer ============ */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-col p {
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-family: var(--font-serif);
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--primary);
    transform: translateY(-4px);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
}

.payment-icons {
    display: flex;
    gap: 14px;
    align-items: center;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.6);
}

.upi-icon {
    background: var(--gold);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ============ Floating Buttons ============ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-purple);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: var(--shadow-md);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-top.show {
    opacity: 1;
    visibility: visible;
}

.back-top:hover {
    transform: translateY(-4px);
    background: var(--gold);
    color: var(--primary);
}

/* ============ Responsive ============ */
@media (max-width: 1100px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-grid,
    .contact-grid,
    .newsletter-box {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
        height: 500px;
    }

    .products-grid,
    .features-grid,
    .testimonials-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item:nth-child(2) {
        border-right: none;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card {
        height: 240px;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
        border-bottom: 1px solid var(--grey-200);
    }

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

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .products-grid,
    .features-grid,
    .testimonials-grid,
    .footer-grid,
    .about-features,
    .form-row {
        grid-template-columns: 1fr;
    }

    .newsletter-box {
        padding: 40px 30px;
    }

    .newsletter-form {
        flex-direction: column;
        background: transparent;
        gap: 10px;
        padding: 0;
        box-shadow: none;
    }

    .newsletter-form input {
        background: var(--white);
        border-radius: 50px;
        width: 100%;
        text-align: center;
    }

    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
}

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

    .navbar {
        padding: 14px 16px;
    }

    .nav-actions {
        gap: 10px;
    }

    .logo-img {
        height: 40px;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 50px 16px;
    }

    .hero-title {
        font-size: 40px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .trust-items {
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 20px;
    }

    .trust-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .contact-form {
        padding: 28px 20px;
    }
}
