/* ================================
   GLOBAL RESET
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #020617;
    color: #ffffff;
    line-height: 1.6;
}

/* ================================
   BUTTONS
================================ */
.btn {
    display: inline-block;
    padding: 14px 26px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
}

.btn.primary {
    background: #f59e0b;
    color: #000;
}

.btn.outline {
    border: 2px solid #ffffff;
    color: #ffffff;
}

/* ================================
   HERO SECTION
================================ */
.stone-hero {
    height: 100vh;
    background: url('/public/assets/images/stone-bg.jpg') center/cover no-repeat;
    position: relative;
}

.overlay {
    background: rgba(0,0,0,0.7);
    height: 100%;
    padding: 90px 40px;
}

.overlay h1 {
    font-size: 52px;
    max-width: 720px;
    font-weight: 800;
}

.overlay h1 span {
    color: #f59e0b;
}

.overlay p {
    font-size: 20px;
    margin: 22px 0 35px;
    color: #e5e7eb;
}

.hero-btns a {
    margin-right: 12px;
}

/* ================================
   PRODUCTS
================================ */
.products {
    padding: 80px 40px;
    background: #020617;
}

.products h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 50px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.product-card {
    background: #111827;
    padding: 35px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border-left: 6px solid #f59e0b;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
}

/* ================================
   WHY US
================================ */
.why-us {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    padding: 80px 40px;
    background: #000000;
}

.why-card {
    background: #111827;
    padding: 35px;
    text-align: center;
    border-radius: 6px;
}

.why-card h3 {
    font-size: 30px;
    color: #f59e0b;
    margin-bottom: 10px;
}

.why-card p {
    color: #d1d5db;
}

/* ================================
   FOOTER
================================ */
.stone-footer {
    background: #000000;
    padding: 25px 15px;
    text-align: center;
}

.stone-footer p {
    font-size: 14px;
    color: #9ca3af;
}

.powered {
    margin-top: 6px;
    font-size: 13px;
    color: #6b7280;
}
.counter-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 30px;
    padding: 80px 40px;
    background: #020617;
    text-align: center;
}

.counter-box {
    background: #111827;
    padding: 40px;
    border-radius: 10px;
}

.counter-box span {
    font-size: 42px;
    color: #f59e0b;
    font-weight: bold;
}

.counter-box p {
    margin-top: 8px;
    color: #d1d5db;
}
.product-card.wow {
    background: linear-gradient(135deg,#111827,#020617);
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: all 0.4s ease;
}

.product-card.wow:hover {
    transform: translateY(-12px) scale(1.03);
}

.product-card.wow h3 {
    color: #f59e0b;
    margin-bottom: 10px;
}

.product-card.wow a {
    display: inline-block;
    margin-top: 15px;
    color: #f59e0b;
    font-weight: bold;
    text-decoration: none;
}
.floating-icons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-icons a {
    width: 50px;
    height: 50px;
    background: #f59e0b;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    text-decoration: none;
}
.product-img-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    transition: transform 0.4s ease;
    text-decoration: none;
}

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

.product-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(0,0,0,0.85),transparent);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-overlay h3 {
    color: #f59e0b;
}

.card-overlay p {
    font-size: 14px;
    color: #e5e7eb;
}

.card-overlay span {
    margin-top: 8px;
    font-weight: bold;
    color: #f59e0b;
}
/* ================================
   PRODUCT DETAIL PAGE
================================ */

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 90px 40px;
    background: #020617;
}

.product-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.product-info h1 {
    font-size: 40px;
    color: #f59e0b;
    margin-bottom: 15px;
}

.product-desc {
    font-size: 18px;
    color: #e5e7eb;
    margin-bottom: 20px;
}

.product-uses li {
    list-style: none;
    margin-bottom: 20px;
    color: #d1d5db;
}

.product-actions {
    margin-bottom: 20px;
}

.product-actions .btn {
    margin-right: 12px;
}

.back-link {
    display: inline-block;
    margin-top: 10px;
    color: #9ca3af;
    text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr;
        padding: 60px 20px;
    }

    .product-info h1 {
        font-size: 28px;
    }
}

/* ================================
   RESPONSIVE (MOBILE)
================================ */
@media (max-width: 768px) {

    .overlay {
        padding: 80px 20px;
    }

    .overlay h1 {
        font-size: 34px;
    }

    .overlay p {
        font-size: 16px;
    }

    .products,
    .why-us {
        padding: 60px 20px;
    }

    .products h2 {
        font-size: 26px;
    }
}