/* ==========================================================================
   SAFAKA METAL - PREMIUM ADVANCED CSS
   Version: 2.0 (Fully Responsive & Optimized)
   ========================================================================== */

/* =========================================
   0. FONTS & ROOT VARIABLES
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Jost:wght@300;400;500;600&display=swap');

:root {
    --primary-bg: #020b12; /* Deepest Navy */
    --dark-deep: #05080F;
    --dark-slate: #16213E;
    --gold-accent: #D4AF37;
    --gold-light: #F1DCA7;
    --gold-gradient: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --text-white: #FFFFFF;
    --soft-blue: #b0c4de;
    --transition: all 0.3s ease-in-out;
}

* { box-sizing: border-box; }

body {
    margin: 0; padding: 0;
    font-family: 'Jost', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden !important;
}

.container { width: 90%; max-width: 1240px; margin: 0 auto; padding: 0 15px; }
img { max-width: 100%; height: auto; display: block; }
.section-padding { padding: 100px 0; }

/* =========================================
   1. SITE HEADER & NAVIGATION
   ========================================= */
.site-header {
    position: absolute; top: 0; left: 0; width: 100%; z-index: 99999;
    background: transparent; padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.flex-header { display: flex; justify-content: space-between; align-items: center; }
.logo a { text-decoration: none; }
.logo h1 {
    font-family: 'Playfair Display', serif; color: #fff; font-size: 26px; 
    letter-spacing: 3px; margin: 0; line-height: 1;
}
.logo span {
    display: block; font-size: 10px; background: var(--gold-gradient); 
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    letter-spacing: 5px; text-align: right; font-weight: 700;
}

.main-nav ul#nav-list { list-style: none; display: flex; gap: 35px; margin: 0; padding: 0; align-items: center; }
.main-nav a {
    text-decoration: none; color: #fff; font-size: 14px; text-transform: uppercase;
    letter-spacing: 1px; font-weight: 500; transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-accent); }
.btn-contact {
    border: 1px solid rgba(255, 255, 255, 0.3); padding: 10px 25px; 
    color: #fff !important; border-radius: 4px;
}
.btn-contact:hover { border-color: var(--gold-accent); background: var(--gold-accent); color: #000 !important; }
.mobile-menu-icon { display: none; cursor: pointer; color: var(--gold-accent); font-size: 26px; z-index: 100000; }

/* =========================================
   2. HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    background: linear-gradient(145deg, var(--dark-deep) 0%, var(--dark-slate) 100%);
    min-height: 85vh; 
    display: flex; align-items: center; overflow: hidden; padding: 120px 0 80px;
}
.hero-section::before {
    content: ''; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 60px; width: 100%; }
.hero-text-col { flex: 1 1 550px; z-index: 10; }
.hero-collage-col { flex: 1 1 450px; position: relative; height: 500px; display: flex; justify-content: center; align-items: center; }

.brand-tag { 
    color: var(--gold-accent); letter-spacing: 4px; font-size: 15px; 
    margin-bottom: 20px; font-weight: 700; text-transform: uppercase;
    display: inline-block; border-bottom: 2px solid var(--gold-accent); padding-bottom: 5px;
}
.hero-text-col h1 { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 5.5vw, 5rem); color: #fff; line-height: 1.1; margin-bottom: 25px; font-weight: 800; }
.gold-text-shine { 
    background: linear-gradient(to right, var(--gold-accent), var(--gold-light), var(--gold-accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-size: 200% auto; animation: shine 3s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }

.hero-text-col p { color: var(--soft-blue); font-size: clamp(1.1rem, 2vw, 1.2rem); margin-bottom: 40px; max-width: 90%; }
.btn-main-shine { 
    background: linear-gradient(45deg, var(--gold-accent), #b8962d); color: #000; 
    padding: 18px 45px; border-radius: 50px; text-decoration: none; font-weight: 700; 
    font-size: 1.1rem; display: inline-block; transition: var(--transition); 
    box-shadow: 0 10px 25px -10px rgba(212, 175, 55, 0.5);
}
.btn-main-shine:hover { transform: translateY(-5px); box-shadow: 0 15px 30px -10px rgba(212, 175, 55, 0.7); color: #fff; }

/* Collage */
.collage-wrapper { position: relative; width: 100%; height: 100%; }
.collage-card { position: absolute; transition: var(--transition); }
.collage-card img { filter: drop-shadow(0 25px 50px rgba(0,0,0,0.6)); }
.main-card { top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 3; }
.main-card img { width: 400px; }
.sub-card-1 { top: 10%; right: 0; z-index: 2; }
.sub-card-1 img { width: 220px; filter: blur(1px) drop-shadow(0 15px 30px rgba(0,0,0,0.5)); transform: rotate(5deg); }
.sub-card-2 { bottom: 10%; left: -5%; z-index: 2; }
.sub-card-2 img { width: 240px; filter: blur(2px) drop-shadow(0 15px 30px rgba(0,0,0,0.5)); transform: rotate(-5deg); }
.glow-circle { 
    position: absolute; width: 550px; height: 550px; 
    background: radial-gradient(circle, rgba(212,175,55,0.3) 0%, transparent 70%); 
    top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1; mix-blend-mode: screen;
}

/* =========================================
   3. COMPONENTS & UTILITIES
   ========================================= */
.gold-divider { height: 3px; background: var(--gold-gradient); border-radius: 2px; }
.center-align { width: 80px; margin: 0 auto 40px auto !important; display: block; }
.left-align { width: 60px; margin-bottom: 25px; }
.section-title { text-align: center; color: #fff; font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 20px; }
.link-arrow { color: var(--text-white); text-decoration: none; border-bottom: 1px solid var(--gold-accent); padding-bottom: 5px; font-weight: 600; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 10px; transition: 0.3s; text-transform: uppercase; }
.link-arrow i { color: var(--gold-accent); transition: 0.3s; }
.link-arrow:hover i { transform: translateX(8px); }

/* =========================================
   4. HOME PAGE SECTIONS
   ========================================= */
/* Features */
.features-strip { 
    background: linear-gradient(to right, var(--gold-accent), #e0c265); 
    padding: 25px 0; color: #000; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative; z-index: 20; margin-top: -30px; border-radius: 15px 15px 0 0;
}
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; justify-items: center; text-align: center; }
.feature-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.icon-box { width: 60px; height: 60px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--dark-deep); margin-bottom: 5px; }
.feature-item h4 { margin: 0; font-size: 1.1rem; font-weight: 600; text-transform: uppercase; }
.feature-item span { font-size: 0.9rem; font-weight: 500; opacity: 0.85; }

/* Philosophy */
.brand-philosophy { padding: 120px 0; background: var(--primary-bg); overflow: hidden; }
.philosophy-wrapper { display: flex; flex-wrap: wrap; gap: 80px; align-items: center; }
.philosophy-images { flex: 1 1 450px; position: relative; height: 500px; }
.ph-img-1 { width: 85%; height: 100%; border-radius: 15px; object-fit: cover; box-shadow: 20px 20px 60px rgba(0,0,0,0.3); }
.ph-img-2 { position: absolute; width: 60%; right: -20px; bottom: -40px; border-radius: 15px; border: 10px solid var(--primary-bg); }
.philosophy-text-col { flex: 1 1 500px; }
.philosophy-text-col h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1.2; margin-bottom: 25px; }
.gold-text { color: var(--gold-accent); }

/* Showcase */
.featured-showcase { padding: 100px 0; background: var(--dark-slate); }
.showcase-row { display: flex; flex-wrap: wrap; gap: 60px; align-items: center; }
.showcase-text { flex: 1 1 400px; }
.showcase-text .sub-title { color: var(--gold-accent); letter-spacing: 2px; font-size: 1rem; font-weight: bold; display: block; margin-bottom: 10px; }
.showcase-text h3 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 20px; line-height: 1.2; }
.showcase-img { flex: 1 1 450px; border-radius: 15px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.showcase-img img { width: 100%; height: 100%; object-fit: cover; }

/* Category Grid (Perfect Center Fix) */
.category-grid-section { padding: 100px 0 60px; background: #fff; width: 100%; overflow: hidden; }
.category-grid-section .section-title { color: var(--dark-deep); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; width: 100%; box-sizing: border-box; }
.cat-card { position: relative; border-radius: 15px; overflow: hidden; display: block; aspect-ratio: 4/3; width: 100%; box-sizing: border-box; border: 1px solid rgba(0,0,0,0.05); }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cat-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%); display: flex; align-items: flex-end; padding: 30px; }
.cat-overlay h3 { color: #fff; margin: 0; font-size: 1.8rem; letter-spacing: 2px; transform: translateY(20px); transition: 0.3s ease; opacity: 0; width: 100%; text-align: left; }
.cat-card:hover img { transform: scale(1.05); }
.cat-card:hover .cat-overlay h3 { transform: translateY(0); opacity: 1; }

/* Product Cards */
.new-arrivals { padding: 60px 0 100px; background: #fff; }
.new-arrivals .section-title { color: var(--dark-deep); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 30px; }
.product-card { background: #fff; border-radius: 15px; overflow: hidden; border: 1px solid #f1f5f9; transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
.product-card:hover { box-shadow: 0 15px 30px rgba(0,0,0,0.08); transform: translateY(-5px); border-color: var(--gold-accent); }
.prod-img-box { position: relative; aspect-ratio: 1; background: #f8fafc; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 20px;}
.prod-img-box img { max-height: 90%; mix-blend-mode: multiply; transition: 0.3s; }
.product-card:hover .prod-img-box img { transform: scale(1.1); }
.hover-overlay { position: absolute; inset: 0; background: rgba(255,255,255,0.85); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; backdrop-filter: blur(2px); }
.product-card:hover .hover-overlay { opacity: 1; }
.btn-quick-view { background: var(--dark-deep); color: #fff; padding: 12px 25px; border-radius: 50px; text-decoration: none; font-size: 0.9rem; font-weight: bold; transition: 0.3s; text-transform: uppercase; }
.btn-quick-view:hover { background: var(--gold-accent); color: #000; }
.prod-info { padding: 25px 20px; text-align: center; }
.prod-info h4 { margin: 0 0 10px; font-size: 1.15rem; color: #333; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prod-info .price { color: var(--gold-accent); font-weight: 800; font-size: 1.3rem; }

/* CTA Section */
.cta-section { background: linear-gradient(135deg, var(--dark-deep), var(--dark-slate)); padding: 100px 20px; text-align: center; color: #fff; }
.cta-section h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 15px; font-family: 'Playfair Display', serif; }
.cta-form { display: flex; max-width: 600px; margin: 30px auto 0; background: #fff; border-radius: 50px; padding: 8px; }
.cta-form input { flex: 1; border: none; padding: 15px 25px; outline: none; border-radius: 50px 0 0 50px; font-family: inherit; font-size: 1rem; }
.cta-form button { background: var(--gold-accent); color: #000; border: none; padding: 0 40px; border-radius: 50px; font-weight: bold; cursor: pointer; transition: 0.3s; text-transform: uppercase; }
.cta-form button:hover { background: #000; color: #fff; }

/* =========================================
   5. INNER PAGES (Products, Details, Contact)
   ========================================= */
.page-title-strip { background: radial-gradient(circle at center, #0a2e46 0%, #020b12 100%); padding: 180px 0 80px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
.page-title-strip h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 10px; }
.page-title-strip p { color: var(--gold-accent); letter-spacing: 2px; text-transform: uppercase; }

/* Products Layout */
.products-page-layout { display: flex; gap: 40px; padding: 60px 0; align-items: flex-start; }
.dark-sidebar { flex: 0 0 250px; background: var(--dark-slate); padding: 30px; border-radius: 10px; }
.dark-sidebar h3 { color: #fff; margin-top: 0; font-family: 'Playfair Display', serif; }
.dark-sidebar ul { list-style: none; padding: 0; }
.dark-sidebar a { color: var(--soft-blue); display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); text-decoration: none; transition: 0.3s; }
.dark-sidebar a:hover, .dark-sidebar a.active { color: var(--gold-accent); padding-left: 10px; }
.product-listing-area { flex: 1; }

/* Product Detail */
.detail-page-strip { padding-top: 130px; padding-bottom: 20px; background: transparent; text-align: center; border: none; }
.breadcrumb-text { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: #888; }
.breadcrumb-text a { color: #fff; text-decoration: none; transition: 0.3s; }
.breadcrumb-text a:hover { color: var(--gold-accent); }
.breadcrumb-text .current-prod { color: var(--gold-accent); font-weight: 600; }

.product-detail-wrapper { display: flex; gap: 60px; margin-bottom: 80px; }
.detail-image-box { flex: 1; background: #f8fafc; border-radius: 15px; padding: 40px; text-align: center; display: flex; justify-content: center; align-items: center; box-shadow: 0 15px 30px rgba(0,0,0,0.2); }
.detail-image-box img { max-height: 500px; mix-blend-mode: multiply; transition: 0.3s ease; }
.detail-info-box { flex: 1; }
.product-title { font-family: 'Playfair Display', serif; font-size: 2.8rem; margin-bottom: 15px; line-height: 1.2; }
.product-price { font-size: 2.2rem; color: var(--gold-accent); font-weight: bold; margin: 20px 0; font-family: 'Playfair Display', serif; }
.btn-inquiry { display: inline-block; background: var(--gold-accent); color: #000; padding: 15px 40px; border-radius: 50px; text-decoration: none; font-weight: bold; text-transform: uppercase; transition: 0.3s; }
.btn-inquiry:hover { background: #fff; box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4); transform: translateY(-3px); }

/* Contact Page */
.contact-page-title { padding-top: 180px !important; }
.contact-wrapper { display: flex; gap: 60px; justify-content: space-between; }
.contact-info { flex: 1; }
.contact-form { flex: 1; background: #fff; padding: 40px; border-radius: 10px; box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 10px; color: #333; font-weight: 600; }
.form-group input, .form-group textarea { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 6px; font-family: inherit; }
.btn-submit { background: var(--gold-accent); color: #000; padding: 16px 30px; border: none; border-radius: 6px; font-weight: bold; width: 100%; cursor: pointer; text-transform: uppercase; transition: 0.3s; }

/* =========================================
   6. FOOTER
   ========================================= */
.site-footer { background-color: var(--dark-deep); padding-top: 80px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 40px; padding-bottom: 60px; }
.footer-col h4 { color: #fff; font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 25px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 15px; display: flex; align-items: flex-start; gap: 15px; color: var(--soft-blue); }
.footer-col ul li i { color: var(--gold-accent); margin-top: 5px; }
.footer-col a { color: var(--soft-blue); text-decoration: none; transition: 0.3s; }
.footer-col a:hover { color: var(--gold-accent); padding-left: 5px; }
.footer-logo h2 { font-family: 'Playfair Display', serif; margin: 0; font-size: 2rem; color: #fff; }
.footer-logo span { color: var(--gold-accent); letter-spacing: 5px; font-size: 0.9rem; display: block; margin-bottom: 20px; }
.social-icons { display: flex; gap: 15px; margin-top: 25px; }
.social-icons a { width: 40px; height: 40px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.newsletter-form { display: flex; margin-top: 20px; }
.newsletter-form input { flex: 1; padding: 12px 15px; border: none; background: rgba(255,255,255,0.05); color: #fff; outline: none; border-radius: 4px 0 0 4px; }
.newsletter-form button { background: var(--gold-accent); border: none; padding: 0 20px; border-radius: 0 4px 4px 0; cursor: pointer; }
.copyright-bar { border-top: 1px solid rgba(255, 255, 255, 0.05); padding: 20px 0; background: #020408; font-size: 0.9rem; color: #888; }
.copyright-bar .container { display: flex; justify-content: space-between; align-items: center; }

/* =========================================
   7. PRELOADER & CURSOR
   ========================================= */
#preloader { position: fixed; inset: 0; background: var(--primary-bg); z-index: 9999999; display: flex; justify-content: center; align-items: center; }
.loader-logo { font-family: 'Playfair Display', serif; font-size: 40px; color: #fff; animation: pulseGold 2s infinite; }
@keyframes pulseGold { 50% { opacity: 0.5; color: var(--gold-accent); } }
.cursor-dot { position: fixed; width: 8px; height: 8px; background: var(--gold-accent); border-radius: 50%; pointer-events: none; z-index: 999999; }
.cursor-outline { position: fixed; width: 40px; height: 40px; border: 1px solid rgba(212, 175, 55, 0.5); border-radius: 50%; pointer-events: none; z-index: 999999; }

/* =========================================
   8. MOBILE RESPONSIVE (ULTIMATE FIXES)
   ========================================= */
@media (max-width: 991px) {
    /* Header & Menu */
    .mobile-menu-icon { display: block !important; }
    .site-header { position: relative; z-index: 999999; }
    
    /* Mobile Menu Dropdown Panel */
    .main-nav ul#nav-list {
        position: fixed !important; top: 0 !important; right: -100% !important; 
        width: 280px !important; height: 100vh !important; background: #05080F !important; 
        flex-direction: column !important; padding-top: 100px !important; 
        transition: right 0.4s ease-in-out !important; box-shadow: -5px 0 20px rgba(0,0,0,0.8) !important;
    }
    .main-nav ul#nav-list.active { right: 0 !important; }
    .main-nav ul#nav-list li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .main-nav ul#nav-list li a { padding: 16px 30px; display: block; }
    .main-nav ul#nav-list li a.btn-contact { margin: 20px; text-align: center; }

    /* Hide Custom Cursor on touch devices */
    .cursor-dot, .cursor-outline { display: none !important; }

    /* Hero Stacking */
    .hero-section { padding: 120px 0 60px; text-align: center; height: auto; }
    .hero-wrapper { flex-direction: column-reverse; gap: 40px; }
    .hero-text-col p { margin: 0 auto 30px; }
    .hero-collage-col { height: 350px; width: 100%; margin-bottom: 20px; }
    .main-card { width: 220px; }
    .sub-card-1 { width: 120px; top: 0; right: 0; transform: none; }
    .sub-card-2 { width: 130px; bottom: 0; left: 0; transform: none; }
    .glow-circle { width: 280px; height: 280px; }

    /* Section Stacking */
    .philosophy-wrapper, .showcase-row, .contact-wrapper, .products-page-layout, .product-detail-wrapper { 
        flex-direction: column; gap: 40px; text-align: center;
    }
    .philosophy-images, .showcase-img, .detail-image-box { width: 100%; height: auto; }
    .ph-img-1 { position: static; width: 100%; }
    .ph-img-2 { display: none; } /* Hide secondary philosophy image on mobile for cleanness */
    
    .gold-divider.left-align { margin: 15px auto 25px auto !important; }

    /* Grids */
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    
    .contact-form, .dark-sidebar { width: 100%; }
    .cta-form { flex-direction: column; border-radius: 0; background: transparent; gap: 15px; }
    .cta-form input, .cta-form button { border-radius: 10px; width: 100%; padding: 15px; text-align: center; }
}

@media (max-width: 768px) {
    .container { padding: 0 15px; }
    .hero-text-col h1 { font-size: 2.5rem; }
    .btn-main-shine { width: 100%; box-sizing: border-box; }
    
    .features-strip { padding: 30px 0; margin-top: -20px; border-radius: 15px 15px 0 0;}
    .features-grid { grid-template-columns: 1fr; gap: 25px; }
    .feature-item { width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
    .feature-item:last-child { border-bottom: none; }
    
    /* Mobile 1 Column Grids */
    .grid-3 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-col ul li { justify-content: center; }
    .social-icons { justify-content: center; }
    
    .cat-overlay h3 { transform: translateY(0); opacity: 1; text-align: center; }
    
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; padding: 0 5px; } /* Keep 2 products per row on small screens */
    .prod-info { padding: 15px 10px; }
    .prod-info h4 { font-size: 0.9rem; }
    .prod-info .price { font-size: 1.1rem; }
    .btn-quick-view { display: none; } /* Hide quick view on small phones */
    
    .contact-page-title { padding-top: 140px !important; }
    .copyright-bar .container { flex-direction: column; gap: 10px; }
}