/* =========================================
   VIZUAL PRINT - STYLE.CSS (FINAL)
   ========================================= */

/* --- Root Variables & Base Styles --- */
:root {
    --color-blue: #1b83a6;
    --color-yellow: #ebbc1c;
    --color-pink: #c7328c;
    --color-dark: #1f231d;
    --color-light: #e3dcd2;
    --font-main: 'Inter', sans-serif;
    --header-height: 80px;
    --transition-fast: 0.4s;
    --transition-smooth: cubic-bezier(0.25, 1, 0.5, 1);
    --border-radius: 1rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    background-color: var(--color-light);
    color: var(--color-dark);
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}
body.loaded { opacity: 1; }
.section-padding { padding: clamp(60px, 10vh, 100px) 5%; }

/* --- REVISED Animated Background --- */
.background-spots { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden; }
.spot { position: absolute; border-radius: 50%; filter: blur(150px); opacity: 0; animation: drift 30s infinite alternate ease-in-out; }
.spot-1 { width: 450px; height: 450px; background: var(--color-blue); top: 5%; left: 5%; animation-delay: 0s; }
.spot-2 { width: 500px; height: 500px; background: var(--color-pink); bottom: 5%; right: 5%; animation-delay: 5s; }
.spot-3 { width: 400px; height: 400px; background: var(--color-yellow); top: 30%; left: 40%; animation-delay: 10s; }
.spot-4 { width: 350px; height: 350px; background: var(--color-blue); opacity: 0.1; bottom: 25%; left: 15%; animation-delay: 15s; }
@keyframes drift {
    0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(80px, 120px) scale(1.3); opacity: 0.4; }
    100% { transform: translate(-40px, -80px) scale(1); opacity: 0.3; }
}

/* --- Pre-loader Styles --- */
#preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--color-dark); z-index: 1000; display: flex; justify-content: center; align-items: center; transition: clip-path 2.5s var(--transition-smooth), visibility 0s 2.5s; clip-path: circle(150% at 50% 50%); }
#preloader.hidden { clip-path: circle(0% at 50% 50%); visibility: hidden; }
.logo-text-loader { color: var(--color-light); font-size: clamp(2rem, 8vw, 4rem); font-weight: 900; opacity: 0; animation: fadeInLogo 1.5s ease-out forwards; }
@keyframes fadeInLogo { to { opacity: 1; } }

/* --- Header & Navigation Styles --- */
#main-header { position: fixed; top: 0; left: 0; width: 100%; height: var(--header-height); z-index: 100; transition: background-color 0.4s ease, box-shadow 0.4s ease; }
#main-header.scrolled { background-color: rgba(227, 220, 210, 0.8); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 100%; padding: 0 5%; max-width: 1600px; margin: 0 auto; }
.header-logo img { height: 45px; display: block; }
.nav-right { display: flex; align-items: center; gap: 2rem; }
.desktop-nav { display: flex; align-items: center; list-style: none; gap: 1.5rem; }
.desktop-nav a { text-decoration: none; color: var(--color-dark); font-weight: 700; position: relative; padding: 5px 0; }
.desktop-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--color-pink), var(--color-yellow)); transition: width 0.3s ease; }
.desktop-nav a:hover::after { width: 100%; }

/* --- REVISED Simple & Clean Button Styles --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid var(--color-dark);
    transition: transform 0.3s ease, color var(--transition-fast) ease, background-color var(--transition-fast) ease, border-color var(--transition-fast) ease;
    position: relative;
    z-index: 1;
    cursor: pointer;
}
.btn:hover { transform: scale(1.08); }
.btn-primary { background-color: var(--color-dark); color: var(--color-light); }
.btn-primary:hover { background-color: var(--color-light); color: var(--color-dark); }
.btn-secondary { background-color: transparent; color: var(--color-dark); }
.btn-secondary:hover { background-color: var(--color-dark); color: var(--color-light); }

/* --- Hero Section Styles --- */
#hero { min-height: 100vh; display: flex; justify-content: center; align-items: center; text-align: center; padding: 0 5%; position: relative; }
.hero-content { z-index: 2; }
#hero h1 { font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 900; line-height: 1.1; }
#hero p { font-size: 1.75rem; max-width: 700px; margin: 1.5rem auto 2.5rem; }
.hero-buttons { display: flex; justify-content: center; gap: 1rem; }

/* --- REVISED Value Propositions Section Styles --- */
#value-props { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.value-card { background-color: rgba(255, 255, 255, 0.3); padding: 2.5rem; border-radius: var(--border-radius); border: 1px solid rgba(27, 131, 166, 0.1); text-align: center; opacity: 0; transform: translateY(30px); transition: opacity 0.5s ease, transform 0.5s ease, background-color 0.3s ease, box-shadow 0.3s ease; }
.value-card:hover { background-color: #fff; box-shadow: 0 20px 40px -15px rgba(31, 35, 29, 0.1); transform: translateY(-5px); }
.value-card.is-visible { opacity: 1; transform: translateY(0); }
.value-card-icon { color: var(--color-blue); margin-bottom: 1.5rem; font-size: 2.5rem; }
.value-card h3 { margin-bottom: 1rem; font-size: 1.5rem; }

/* --- REVISED Product Marquee Styles --- */
#marquee { width: 100%; overflow: hidden; padding: 0; background: transparent; }
.marquee-content { display: flex; width: max-content; animation: marquee-scroll 60s linear infinite; padding: 2rem 0; }
.marquee-content:hover { animation-play-state: paused; }
.product-card-marquee { display: block; text-decoration:none; flex-shrink: 0; width: 350px; height: 230px; margin: 0 1rem; border-radius: var(--border-radius); transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 10px 30px -15px rgba(31, 35, 29, 0.2); overflow: hidden; }
.product-card-marquee img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card-marquee:hover { transform: scale(1.05); box-shadow: 0 20px 40px -15px rgba(31, 35, 29, 0.3); }
.product-card-marquee:hover img { transform: scale(1.1); }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- REVISED Main Product Grid Styles --- */
#product-grid h2 { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; }
.grid-container { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 1.5rem; }
.grid-card { display: block; text-decoration:none; border-radius: var(--border-radius); position: relative; overflow: hidden; }
.grid-card::before { content: ''; display: block; padding-bottom: 100%; }
.grid-card img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.grid-card:hover img { transform: scale(1.1); }
.cta-card-large { grid-column: span 2; background-color: var(--color-dark); color: var(--color-light); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 2rem; }
.cta-card-large::before { display: none; }
.cta-card-large h3 { font-size: 2rem; margin-bottom: 1rem; }
#cta-grid-btn { margin-top: 1.5rem; background-color: var(--color-blue); border-color: var(--color-blue); color: #fff; }
#cta-grid-btn:hover { background-color: var(--color-light); color: var(--color-dark); border-color: var(--color-light); }

/* --- REVISED Newsletter Styles --- */
#newsletter .newsletter-box { background-color: var(--color-dark); color: var(--color-light); padding: clamp(2.5rem, 8vw, 4rem); border-radius: var(--border-radius); max-width: 800px; margin: 0 auto; text-align: center; }
#newsletter h2 { font-size: 2.5rem; margin-bottom: 1rem; }
#newsletter p { color: rgba(227, 220, 210, 0.8); }
#newsletter-form { margin-top: 2rem; }
.form-group { margin-bottom: 1.5rem; text-align: left; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 700; }
.form-group input[type="text"], .form-group input[type="email"] { width: 100%; padding: 15px; border: 2px solid rgba(227, 220, 210, 0.3); border-radius: 8px; font-size: 1rem; transition: border-color 0.3s ease, background-color 0.3s ease; background: transparent; color: var(--color-light); }
.form-group input:focus { outline: none; border-color: var(--color-blue); background-color: rgba(227, 220, 210, 0.1); }
.name-group { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.5s ease, opacity 0.5s ease, margin-bottom 0.5s ease; margin-bottom: 0; }
.name-group.visible { max-height: 100px; opacity: 1; margin-bottom: 1.5rem; }
.checkbox-group { margin-top: 1.5rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.9rem; color: rgba(227, 220, 210, 0.7); }
#newsletter-btn { background-color: var(--color-blue); border-color: var(--color-blue); color: #fff; }
#newsletter-btn:hover { background-color: var(--color-light); color: var(--color-dark); border-color: var(--color-light); }

/* --- REVISED Footer Styles --- */
#main-footer { padding: 60px 5%; background-color: var(--color-dark); color: rgba(227, 220, 210, 0.7); }
.footer-container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2.5rem; max-width: 1600px; margin: 0 auto; }
.footer-column { flex: 1; min-width: 200px; }
.footer-logo-area img { width: 75px; height: 75px; margin-bottom: 1rem; }
.footer-logo-area p { margin-bottom: 1.5rem; line-height: 1.6; max-width: 250px; }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a { color: rgba(227, 220, 210, 0.7); font-size: 1.5rem; transition: color 0.3s ease, transform 0.3s ease; }
.footer-socials a:hover { color: var(--color-light); transform: translateY(-3px); }
.footer-column h4 { color: var(--color-light); margin-bottom: 1.5rem; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-column a, .footer-column p { color: rgba(227, 220, 210, 0.7); text-decoration: none; display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; transition: color 0.3s ease; }
.footer-column a:hover { color: var(--color-light); }
.footer-bottom { text-align: center; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(227, 220, 210, 0.2); font-size: 0.9rem; }

/* --- Mobile Menu Styles & Hamburger --- */
#menu-toggle-button { display: none; background: none; border: none; cursor: pointer; z-index: 1001; padding: 10px; }
.hamburger-icon { width: 25px; height: 20px; position: relative; }
.hamburger-icon span { display: block; position: absolute; height: 3px; width: 100%; background: var(--color-dark); border-radius: 3px; left: 0; transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease; }
.hamburger-icon span:nth-child(1) { top: 0px; }
.hamburger-icon span:nth-child(2) { top: 8px; }
.hamburger-icon span:nth-child(3) { top: 16px; }
body.menu-open .hamburger-icon span { background: var(--color-light); }
body.menu-open .hamburger-icon span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .hamburger-icon span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger-icon span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
#mobile-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 999; display: flex; justify-content: center; align-items: center; visibility: hidden; }
#mobile-menu::before { content: ''; position: absolute; top: calc(var(--header-height) / 2); right: 5%; width: 40px; height: 40px; background: var(--color-dark); border-radius: 50%; transform: translate(50%, -50%) scale(0); transition: transform 0.8s var(--transition-smooth); }
body.menu-open #mobile-menu { visibility: visible; }
body.menu-open #mobile-menu::before { transform: translate(50%, -50%) scale(100); }
.mobile-nav-links ul { list-style: none; text-align: center; }
.mobile-nav-links li { opacity: 0; transform: translateY(20px); transition: opacity 0.4s ease, transform 0.4s ease; }
.mobile-nav-links li a { color: var(--color-light); text-decoration: none; font-size: 2rem; font-weight: 700; padding: 1rem 0; display: block; }
body.menu-open .mobile-nav-links li:nth-child(1) { transition-delay: 0.3s; }
body.menu-open .mobile-nav-links li:nth-child(2) { transition-delay: 0.4s; }
body.menu-open .mobile-nav-links li:nth-child(3) { transition-delay: 0.5s; }
body.menu-open .mobile-nav-links li:nth-child(4) { transition-delay: 0.6s; }
body.menu-open .mobile-nav-links li { opacity: 1; transform: translateY(0); }

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }

/* --- Responsive Breakpoints --- */
@media (max-width: 900px) {
    .nav-right { display: none; }
    #menu-toggle-button { display: block; }
    .footer-container { flex-direction: column; text-align: center; }
    .footer-column { min-width: 100%; }
    .footer-logo-area, .footer-column p { justify-content: center; }
}
@media (max-width: 768px) {
    .grid-container { grid-template-columns: repeat(2, 1fr); }
    .cta-card-large { grid-column: span 2; }
}
@media (max-width: 600px) {
    .grid-container { grid-template-columns: 1fr; }
    .cta-card-large { grid-column: span 1; }
}

/* =========================================
   CATALOG PAGE STYLES
   ========================================= */

/* --- Section & Title Styles --- */
#catalog-page {
    padding-top: calc(var(--header-height) + 60px); /* Ensures content starts below the fixed header */
}

.catalog-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

/* Creates the underline effect matching your examples */
.catalog-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-pink), var(--color-yellow));
}

/* --- Breadcrumb Navigation --- */
.breadcrumb {
    margin-bottom: 2rem;
    color: var(--color-dark);
    font-weight: 700;
}

.breadcrumb a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--color-blue);
}

/* --- Category Grid Layout --- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* --- Individual Category Card Styles --- */
.category-card {
    display: block;
    text-decoration: none;
    color: var(--color-dark);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px -15px rgba(31, 35, 29, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(27, 131, 166, 0.1);
    position: relative; /* This is key for positioning the title overlay */
    height: 280px; /* A fixed height for all cards ensures uniformity */
}


.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(31, 35, 29, 0.2);
}

.category-card img {
    width: 100%;
    height: 100%; /* Image will fill the entire card */
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.category-card:hover img {
    transform: scale(1.05); /* Subtle zoom on hover */
}

.category-card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px; /* Increased height to allow for two lines of text */
    padding: 0 1rem; /* Padding on the left/right, 0 on top/bottom */
    font-weight: 700;
    font-size: 1.1rem; /* Slightly reduced font-size for better fit */
    text-align: center;
    background: linear-gradient(to top, rgba(255,255,255,1) 70%, rgba(255,255,255,0.8));
    color: var(--color-dark);
    
    /* Flexbox properties for perfect centering */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* =========================================
   PRODUCT LISTING PAGE STYLES
   ========================================= */

#product-list-page {
    padding-top: calc(var(--header-height) + 60px);
}

/* --- Product Grid Layout --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* --- Individual Product Card Styles --- */
.product-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px -15px rgba(31, 35, 29, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(31, 35, 29, 0.2);
}

.product-card-image {
    height: 250px;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-content {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Allows content to fill space */
}

.product-card-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Pushes buttons to the bottom */
}

.product-card-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* --- New WhatsApp Button Style --- */
.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    border-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background-color: #1DAE54;
    border-color: #1DAE54;
    color: #fff;
}

/* =========================================
   PRODUCT DETAIL PAGE STYLES
   ========================================= */

#product-detail-page {
    padding-top: calc(var(--header-height) + 60px);
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-image-column img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px -15px rgba(31, 35, 29, 0.2);
}

.product-title {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.1rem;
    color: var(--color-blue);
    font-weight: 700;
    margin-bottom: 2rem;
}

.product-description p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-description ul {
    list-style-position: inside;
    margin-bottom: 1rem;
}

.product-description li {
    margin-bottom: 0.5rem;
}

.product-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 350px;
}

/* --- Responsive adjustments for Product Detail Page --- */
@media (max-width: 900px) {
    .product-detail-container {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
    }

    .product-title {
        font-size: 1.8rem;
    }
}

/* =========================================
   PORTFOLIO PAGE STYLES
   ========================================= */
#portfolio-page {
    padding-top: calc(var(--header-height) + 60px);
}

.portfolio-grid {
    column-count: 3;
    column-gap: 1.5rem;
}

.portfolio-item {
    margin-bottom: 1.5rem;
    break-inside: avoid;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px -15px rgba(31, 35, 29, 0.1);
    transition: box-shadow 0.3s ease;
}

.portfolio-item:hover {
     box-shadow: 0 20px 40px -15px rgba(31, 35, 29, 0.2);
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .portfolio-grid { column-count: 2; }
}

@media (max-width: 600px) {
    .portfolio-grid { column-count: 1; }
}


/* =========================================
   LEGAL PAGES (PRIVACY, TERMS)
   ========================================= */
#legal-page {
    padding-top: calc(var(--header-height) + 60px);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.4);
    padding: clamp(1.5rem, 5vw, 3rem);
    border-radius: var(--border-radius);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p, .legal-content li {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style-position: inside;
    padding-left: 1rem;
}

.legal-content a {
    color: var(--color-blue);
    font-weight: 700;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* =========================================
   CONTACT PAGE STYLES (REVISED COLORS)
   ========================================= */
#contact-page {
    padding-top: calc(var(--header-height) + 60px);
    display: flex;
    flex-direction: column;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    width: 100%;
}

.contact-container {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: clamp(1.5rem, 5vw, 3rem);
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 600px;
    box-shadow: 0 20px 40px -15px rgba(31, 35, 29, 0.3);
}

.contact-section {
    margin-bottom: 2.5rem;
}
.contact-section:last-child {
    margin-bottom: 0;
}

.contact-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: rgba(227, 220, 210, 0.7); /* Using theme-consistent subtle text color */
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.05); /* Subtle background from theme */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-decoration: none;
    color: var(--color-light);
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.contact-button:last-child {
    margin-bottom: 0;
}

.contact-button:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Lighter on hover */
    transform: scale(1.03);
}

.contact-button i {
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
    color: var(--color-pink); /* REVISED: Using your theme's pink */
}

.social-buttons-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.social-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(255, 255, 255, 0.05); /* Subtle background from theme */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
    padding: 1.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--color-light);
    font-size: 0.8rem;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-button:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Lighter on hover */
    transform: scale(1.05);
}

.social-button i {
    font-size: 1.8rem;
    color: var(--color-blue); /* REVISED: Using your theme's blue for variety */
}