/*
Theme Name: Stifcos Skin Care
Description: Luxurious skincare theme with elegant design
Version: 3.0
*/

/* ===== RESET & BASE ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blush: #F9E6E6;
    --sand: #F5E6D3;
    --rose-gold: #D4A5A5;
    --charcoal: #2C3E50;
    --white: #FFFFFF;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(212, 165, 165, 0.15);
}

body {
    background-color: var(--blush);
    font-family: 'Poppins', 'Montserrat', sans-serif;
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background: var(--rose-gold);
    color: var(--white);
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 300;
    letter-spacing: 1px;
}

.scrolling-text {
    display: inline-block;
    animation: scrollText 20s linear infinite;
}

.scrolling-text:hover {
    animation-play-state: paused;
}

@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.announcement-bar a {
    color: white;
    text-decoration: underline;
    margin: 0 5px;
}

/* ===== HEADER ===== */
.site-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: none;
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.logo span {
    color: var(--rose-gold);
    font-weight: 400;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* ===== GRAY MENU BAR ===== */
.gray-menu-bar {
    background: var(--white);
    border-top: 1px solid var(--sand);
    border-bottom: 1px solid var(--sand);
    padding: 12px 0;
}

.gray-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.gray-menu a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.gray-menu a:hover {
    color: var(--rose-gold);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--blush) 0%, var(--white) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,165,165,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-title {
    font-size: 56px;
    color: var(--charcoal);
    position: relative;
    z-index: 1;
}

.hero-text {
    font-size: 18px;
    color: var(--charcoal);
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: var(--rose-gold);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 400;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    background: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--rose-gold);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--rose-gold);
    color: var(--white);
}

.view-all-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--charcoal);
    color: white;
    text-decoration: none;
    font-weight: 500;
    margin-top: 40px;
    border-radius: 50px;
    transition: all 0.3s;
}

.view-all-btn:hover {
    background: var(--rose-gold);
    transform: translateY(-2px);
}

/* ===== PRODUCT GRID ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 30px 0;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
    position: relative;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin: 15px 0 5px;
    padding: 0 10px;
}

.product-card h3 a {
    text-decoration: none;
    color: var(--charcoal);
}

.product-card .price {
    color: var(--rose-gold);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
}

.add-to-cart-btn {
    display: inline-block;
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--sand);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.add-to-cart-btn:hover {
    background: var(--rose-gold);
    color: var(--white);
    border-color: var(--rose-gold);
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background: var(--white);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-icon {
    font-size: 48px;
    color: var(--rose-gold);
    margin-bottom: 20px;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-text {
    color: var(--charcoal);
    opacity: 0.7;
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-section {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.instagram-item {
    background: #f0f0f0;
    height: 200px;
    border-radius: 20px;
    transition: all 0.3s;
    overflow: hidden;
    position: relative;
}

.instagram-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.instagram-item::after {
    content: "View";
    position: absolute;
    bottom: 10px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 20px;
    opacity: 0;
    transition: 0.3s;
}

.instagram-item:hover::after {
    opacity: 1;
}

/* ===== STIFCOS PREMIUM FOOTER ===== */
.stifcos-footer {
    background: linear-gradient(to right, #0f172a, #111827);
    color: #e5e7eb;
    padding-top: 70px;
    font-family: 'Poppins', sans-serif;
}

.footer-wrapper {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    padding: 0 20px 60px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.footer-col a {
    display: block;
    text-decoration: none;
    color: #cbd5e1;
    margin-bottom: 10px;
    transition: 0.3s;
    font-size: 14px;
}

.footer-col a:hover {
    color: #d4af37;
    transform: translateX(5px);
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-tagline {
    margin: 15px 0;
    font-size: 14px;
    color: #94a3b8;
}

.footer-contact {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #d4af37;
    color: black;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 5px 0 0 5px;
}

.newsletter-form button {
    padding: 10px 20px;
    border: none;
    background: #22c55e;
    color: white;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #16a34a;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #1f2937;
    font-size: 14px;
    background: #0b1220;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
    height: 50vh;
    background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.9)), url("images/about.jpg") center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.about-hero h1 {
    font-size: 42px;
}

.about-section {
    padding: 80px 0;
}

.about-flex {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.about-flex img {
    width: 420px;
    border-radius: 15px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    color: #555;
}

.certifications {
    background: #f9f7f5;
    padding: 70px 0;
    text-align: center;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.cert-grid img {
    width: 80px;
    margin: auto;
}

.why {
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.why-card {
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url("images/contact-banner.jpg") center/cover no-repeat;
    padding: 120px 0 80px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-hero p {
    max-width: 600px;
    margin: auto;
    color: #555;
}

.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
}

.contact-card {
    background: #f9f7f5;
    padding: 40px 30px;
    border-radius: 15px;
    transition: 0.3s ease;
}

.contact-card i {
    font-size: 32px;
    color: #c8a27a;
    margin-bottom: 15px;
}

.contact-card h3 {
    margin-bottom: 10px;
}

.contact-card p {
    color: #555;
    line-height: 1.6;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.brand-message {
    background: #111827;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.brand-message h2 {
    margin-bottom: 20px;
}

.brand-message p {
    max-width: 750px;
    margin: 0 auto 15px;
    color: #ddd;
    line-height: 1.7;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 999;
}

/* ===== LUXURY SLIDING OFFER BANNER ===== */
.luxury-banner {
    background: linear-gradient(to right, var(--rose-gold), #c48b8b);
    color: white;
    overflow: hidden;
    padding: 10px 0;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
}

.luxury-slider {
    display: flex;
    width: 300%;
    animation: luxurySlide 18s linear infinite;
}

.luxury-banner .slide {
    width: 100%;
    text-align: center;
}

@keyframes luxurySlide {
    0% { transform: translateX(0); }
    33% { transform: translateX(-100%); }
    66% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}

/* ===== HERO GRID ===== */
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 550px;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-img {
    width: 100%;
    max-width: 520px;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    transition: 0.5s ease;
}

.hero-img:hover {
    transform: scale(1.03);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.section-header p {
    opacity: 0.7;
    font-size: 16px;
}

/* ===== FEATURED PRODUCTS ===== */
.featured-products {
    padding: 100px 0;
    background: var(--white);
}

/* ===== ABOUT BRAND SECTION ===== */
.about-brand {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white), var(--blush));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
}

.about-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 25px;
    opacity: 0.8;
}

/* ===== PRODUCT HIGHLIGHT BANNER ===== */
.highlight-product {
    padding: 100px 0;
    background: var(--charcoal);
    color: white;
}

.highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.highlight-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.highlight-content p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.highlight-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--blush);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: 0.3s ease;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-card span {
    font-weight: 600;
    color: var(--rose-gold);
}

/* ===== MOBILE 3-DOTS MENU (CLEANED & FIXED) ===== */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin: 0;
    z-index: 100;
}

.dots-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dots-icon span {
    width: 5px;
    height: 5px;
    background-color: var(--charcoal);
    border-radius: 50%;
    display: block;
    transition: background-color 0.3s;
}

.mobile-menu-toggle:hover .dots-icon span {
    background-color: var(--rose-gold);
}

/* Kebab Menu Styles */
.kebab-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: var(--white);
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    z-index: 999999;
    transition: right 0.3s ease;
    overflow-y: auto;
    visibility: visible;
}

.kebab-menu.open {
    right: 0;
}

.kebab-menu-close {
    position: absolute;
    top: 15px;
    left: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 999999;
}

.kebab-menu-close:hover {
    background: var(--blush);
    color: var(--rose-gold);
}

.kebab-menu-header {
    padding: 70px 20px 20px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 15px;
}

.kebab-menu-header .menu-logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: 1px;
}

.kebab-menu-header .menu-logo span {
    color: var(--rose-gold);
    font-weight: 400;
}

.kebab-menu-content {
    padding: 0 20px 30px;
}

.kebab-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kebab-nav li {
    margin-bottom: 2px;
}

.kebab-nav a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s;
}

.kebab-nav a:hover {
    background: var(--blush);
    color: var(--rose-gold);
    padding-left: 20px;
}

/* Icons for menu items */
.kebab-nav .home-link::before { 
    content: "🏠";
    margin-right: 15px;
    font-size: 18px;
    width: 24px;
}

.kebab-nav .shop-link::before { 
    content: "🛍️";
    margin-right: 15px;
    font-size: 18px;
    width: 24px;
}

.kebab-nav .cart-link::before { 
    content: "🛒";
    margin-right: 15px;
    font-size: 18px;
    width: 24px;
}

.kebab-nav .checkout-link::before { 
    content: "💰";
    margin-right: 15px;
    font-size: 18px;
    width: 24px;
}

.kebab-nav .about-link::before { 
    content: "📖";
    margin-right: 15px;
    font-size: 18px;
    width: 24px;
}

.kebab-nav .contact-link::before { 
    content: "📞";
    margin-right: 15px;
    font-size: 18px;
    width: 24px;
}

.kebab-nav .account-link::before { 
    content: "👤";
    margin-right: 15px;
    font-size: 18px;
    width: 24px;
}

.kebab-nav .wishlist-link::before { 
    content: "❤️";
    margin-right: 15px;
    font-size: 18px;
    width: 24px;
}

/* Divider styling */
.menu-divider {
    margin: 20px 0 15px;
    border-top: 1px solid #f0f0f0;
}

/* Cart count badge */
.cart-count {
    background: var(--rose-gold);
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 8px;
    font-weight: normal;
}

/* Menu overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999998;
    display: none;
}

.menu-overlay.active {
    display: block;
}

/* Desktop styles */
@media (min-width: 769px) {
    .mobile-menu-toggle,
    .kebab-menu,
    .menu-overlay {
        display: none !important;
    }
}

/* ===== MOBILE RESPONSIVE STYLES (CLEANED) ===== */
@media (max-width: 992px) {
    .hero-grid,
    .about-grid,
    .highlight-grid,
    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu Display */
    .mobile-menu-toggle {
        display: block !important;
    }
    
    .gray-menu-bar.desktop-menu {
        display: none !important;
    }
    
    .header-container {
        padding: 10px 15px !important;
    }
    
    .logo {
        font-size: 18px !important;
    }
    
    .dots-icon span {
        background-color: var(--charcoal) !important;
    }
    
    /* Grid Conversions */
    .hero-grid,
    .about-grid,
    .highlight-grid,
    .product-grid,
    .features-grid,
    .testimonial-grid,
    .instagram-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 50px 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-text {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        justify-content: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 24px;
    }
    
    /* Product Cards */
    .product-card {
        padding: 15px;
    }
    
    .product-card h3 {
        font-size: 16px;
    }
    
    /* About Page */
    .about-hero h1 {
        font-size: 26px;
    }
    
    .about-section {
        padding: 50px 0;
    }
    
    .about-flex {
        flex-direction: column;
    }
    
    .about-flex img {
        width: 100%;
    }
    
    .about-text h2 {
        font-size: 22px;
        text-align: center;
    }
    
    .about-text p {
        font-size: 14px;
        text-align: center;
    }
    
    .certifications {
        padding: 50px 0;
    }
    
    .cert-grid {
        gap: 20px;
    }
    
    .cert-grid img {
        width: 70px;
    }
    
    /* Contact Page */
    .contact-hero {
        padding: 90px 20px 60px;
    }
    
    .contact-hero h1 {
        font-size: 26px;
    }
    
    .contact-hero p {
        font-size: 14px;
    }
    
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-wrapper {
        gap: 25px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-card h3 {
        font-size: 18px;
    }
    
    .contact-card p {
        font-size: 14px;
    }
    
    .brand-message {
        padding: 50px 20px;
    }
    
    .brand-message h2 {
        font-size: 22px;
    }
    
    .brand-message p {
        font-size: 14px;
    }
    
    /* Footer Mobile */
    .stifcos-footer {
        padding-top: 50px;
        text-align: center;
    }
    
    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 40px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col h3 {
        margin-bottom: 15px;
    }
    
    .footer-col a {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .footer-logo {
        font-size: 24px;
    }
    
    .footer-tagline {
        font-size: 13px;
    }
    
    .footer-contact {
        font-size: 13px;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 15px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 5px;
    }
    
    /* Offer Banner */
    .top-bar {
        font-size: 12px;
        padding: 8px 10px;
        text-align: center;
        white-space: normal;
    }
    
    .premium-slider,
    .slide,
    .slide-content {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .slide-content {
        padding: 25px 15px !important;
        text-align: center;
    }
    
    .slide-content h1 {
        font-size: 24px !important;
        line-height: 1.3;
    }
    
    .slide-content p {
        font-size: 13px;
    }
    
    /* Section Padding */
    section {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Images */
    img {
        width: 100%;
        height: auto;
    }
}


/* ===============================
   STIFCOS LUXURY SINGLE PRODUCT
================================= */

.stifcos-product-wrapper {
    padding: 60px 5%;
    background: #fff;
}

.single-product div.product {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.single-product div.product .woocommerce-product-gallery {
    flex: 1;
}

.single-product div.product .summary {
    flex: 1;
}

.single-product .product_title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.single-product .price {
    font-size: 24px;
    color: #c89b3c;
    font-weight: bold;
    margin-bottom: 20px;
}

.single-product .woocommerce-product-details__short-description {
    font-size: 16px;
    margin-bottom: 25px;
    color: #555;
}

.single-product button.single_add_to_cart_button {
    background: linear-gradient(45deg, #c89b3c, #e5c16c);
    padding: 15px 40px;
    border-radius: 40px;
    font-weight: bold;
    border: none;
    transition: 0.3s;
}

.single-product button.single_add_to_cart_button:hover {
    background: #000;
}

.single-product .quantity input {
    border-radius: 30px;
    padding: 8px;
}

/* Mobile */

@media(max-width:768px){
    .single-product div.product {
        flex-direction: column;
    }
}

/* ===============================
   STIFCOS LUXURY CART PAGE
================================= */

.woocommerce-cart table.shop_table {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: none;
}

.woocommerce-cart table.shop_table th {
    background: #111;
    color: #fff;
    padding: 18px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.woocommerce-cart table.shop_table td {
    padding: 20px;
    vertical-align: middle;
}

.woocommerce-cart .cart_totals {
    background: #fff8f2;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.woocommerce-cart .checkout-button {
    background: linear-gradient(45deg, #c89b3c, #e5c16c);
    color: #fff !important;
    padding: 15px 35px !important;
    border-radius: 40px !important;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s;
}

.woocommerce-cart .checkout-button:hover {
    background: #000;
}


/* ===============================
   STIFCOS LUXURY CHECKOUT PAGE
================================= */

.woocommerce-checkout form.checkout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.woocommerce-checkout .col2-set {
    flex: 1;
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.07);
}

.woocommerce-checkout #order_review {
    flex: 1;
    background: #fff8f2;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.07);
}

.woocommerce-checkout h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0e4d7;
    padding-bottom: 10px;
}

/* Input Fields */

.woocommerce-checkout input,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    border-radius: 30px !important;
    padding: 12px 20px !important;
    border: 1px solid #ddd !important;
    transition: 0.3s;
}

.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
    border-color: #c89b3c !important;
    box-shadow: 0 0 0 2px rgba(200,155,60,0.2);
}

/* Place Order Button */

.woocommerce-checkout button#place_order {
    background: linear-gradient(45deg, #c89b3c, #e5c16c);
    border-radius: 50px;
    padding: 18px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    border: none;
    transition: 0.3s;
}

.woocommerce-checkout button#place_order:hover {
    background: #000;
}

/* Remove coupon box */

.woocommerce-form-coupon-toggle {
    display: none;
}

/* Mobile Responsive */

@media(max-width: 768px) {

    .woocommerce-checkout form.checkout {
        flex-direction: column;
    }

    .woocommerce-checkout .col2-set,
    .woocommerce-checkout #order_review {
        width: 100%;
    }

}

/* ===== FIX CART PAGE WIDTH ===== */

.woocommerce-cart .site-content,
.woocommerce-cart .content-area,
.woocommerce-cart .container {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 60px 20px !important;
}

/* Make cart table full width */

.woocommerce-cart table.shop_table {
    width: 100% !important;
}

/* Align cart totals to right */

.woocommerce-cart .cart_totals {
    float: right;
    width: 40%;
    margin-top: 40px;
}

/* Fix mobile */

@media(max-width: 768px) {
    .woocommerce-cart .cart_totals {
        width: 100%;
        float: none;
    }
}