/* ========== VARIABLES ========== */
:root {
    --color-primary: #1a1a1a;
    --color-secondary: #f4f4f4;
    --color-accent: #b8975a; /* Subtle gold */
    --color-text: #222222;
    --color-text-light: #666666;
    --color-bg: #ffffff;
    --color-border: #e5e5e5;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.4s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: var(--transition);
}

/* ========== UTILITIES ========== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-primary);
}

.section-title .view-all {
    position: absolute;
    right: 0;
    bottom: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--color-text);
    padding-bottom: 2px;
}

.section-title .view-all:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    border: 1px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: white;
    color: var(--color-primary);
}

.btn-outline-light {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--color-primary);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

.link-arrow::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: var(--transition);
}

.link-arrow:hover::after {
    width: 100%;
}

/* ========== HEADER ========== */
.announcement-bar {
    background-color: var(--color-primary);
    color: white;
    text-align: center;
    padding: 0.6rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.header {
    background-color: white;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.header-left, .header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.header-right {
    justify-content: flex-end;
}

.lang-selector {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

.brand-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    text-align: center;
}



.icon-btn {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.search-form {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 0.1rem 0.5rem;
    background-color: var(--color-secondary);
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    padding: 0.3rem 0.5rem;
    width: 150px;
    color: var(--color-text);
}

.search-input::placeholder {
    color: var(--color-text-light);
}

.search-btn {
    font-size: 1.2rem;
    padding: 0.2rem;
}


.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
}

.main-nav {
    border-top: 1px solid var(--color-border);
    background-color: white;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.nav-links a {
    display: block;
    padding: 1.2rem 0;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    padding: 1.2rem 0;
}

.dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    padding: 1rem 0;
    border-top: 2px solid var(--color-primary);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 2rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    color: var(--color-primary);
    background-color: var(--color-secondary);
}

/* ========== HERO ========== */
.hero {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    position: absolute;
    bottom: 15%;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.hero-content p {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

/* ========== SHOWCASE ========== */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.showcase-item {
    display: block;
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background-color: var(--color-secondary);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.showcase-overlay h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

/* ========== PRODUCTS ========== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
}

.product-card {
    text-align: center;
}

.product-img-wrapper {
    position: relative;
    aspect-ratio: 1/1;
    background-color: var(--color-secondary);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s ease;
    transform: scale(1); /* Ensure the whole image is visible */
}

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

.product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.product-card:hover .product-actions {
    transform: translateY(0);
}

.btn-inquire {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--color-primary);
    color: white;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-inquire:hover {
    background-color: var(--color-accent);
}

.product-info {
    padding: 0 1rem;
}

.product-vendor {
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.product-title,
.pdp-title,
.product-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.price-old {
    text-decoration: line-through;
    color: var(--color-text-light);
    font-size: 0.85rem;
    opacity: 0.7;
}

.price-new {
    color: #c9a050; /* Luxury Gold tone or stay with brand color */
    font-weight: 600;
    font-size: 1.1rem;
}

/* Product Detail Page Price */
.pdp-price {
    margin: 1.5rem 0;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.pdp-price .price-old {
    font-size: 1.1rem;
}

.pdp-price .price-new {
    font-size: 1.8rem;
    color: #b8860b; /* Darker gold for emphasis */
}

/* ========== PROMOTION ========== */
.promotion-section {
    position: relative;
    padding: 8rem 0;
    color: white;
    text-align: center;
    background-color: var(--color-primary);
    overflow: hidden;
}

.promotion-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/promotion.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.promotion-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.promotion-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.promotion-content p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--color-secondary);
}

.promotion-content .btn-primary {
    background-color: white;
    color: var(--color-primary);
    border-color: transparent;
}

.promotion-content .btn-primary:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

/* ========== BLOG ========== */
.blog-section {
    background-color: var(--color-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
}

.blog-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background-color: var(--color-secondary);
}

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

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

.blog-meta {
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
}

.blog-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ========== ABOUT ========== */
.about-section {
    background-color: var(--color-secondary);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.about-text p {
    color: var(--color-text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.about-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/5;
    margin-bottom: 1rem;
}

.image-caption {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-style: italic;
    text-align: center;
}

/* ========== FOOTER ========== */
.newsletter-thin {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem 0;
    text-align: center;
}

.newsletter-thin h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #fff;
}

.subscribe-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.subscribe-form input {
    flex: 1;
    border: none;
    padding: 0.8rem 0;
    outline: none;
    font-family: inherit;
    font-size: 0.9rem;
    background: transparent;
    color: #fff;
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.subscribe-form button {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 0 1rem;
    color: #fff;
}

.footer {
    position: relative;
    background-color: var(--color-primary);
    color: #fff;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('assets/footer.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding: 4rem 2rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    color: #fff;
}

.brand-col p {
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    font-size: 1.2rem;
}

.social-links a {
    color: #fff;
}

.social-links a:hover {
    color: var(--color-accent);
}

.footer-col h3 {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #fff;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-col ul a, .contact-list li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-col ul a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

/* ========== PROMOTION PAGE ========== */
.promo-page-content {
    background-color: var(--color-bg);
    padding: 5rem 0;
}

.promo-container-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 4rem;
    align-items: start;
}

.promo-sidebar {
    position: sticky;
    top: 7rem;
    background-color: var(--color-secondary);
    padding: 2.5rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--color-primary);
}

.sidebar-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.sidebar-links a {
    color: var(--color-text-light);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 2px;
}

.sidebar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.sidebar-links a:hover,
.sidebar-links a.active {
    color: var(--color-primary);
}

.sidebar-links a:hover::after,
.sidebar-links a.active::after {
    transform: scaleX(1);
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    text-align: left;
    color: var(--color-primary);
    margin-bottom: 4rem;
    letter-spacing: 0.05em;
}

.promo-block {
    margin-bottom: 4rem;
}

.promo-subtitle {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.promo-highlight {
    text-align: center;
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 2rem;
}

.promo-or {
    font-weight: bold;
    color: var(--color-accent);
    margin: 1rem 0;
    letter-spacing: 0.1em;
}

.promo-quote {
    font-size: 1.3rem;
    font-style: italic;
    text-align: center;
    color: var(--color-accent);
    margin-bottom: 3rem;
}

.promo-terms, .promo-info {
    background-color: var(--color-secondary);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-left: 3px solid var(--color-primary);
}

.promo-terms h3, .promo-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.promo-terms ul, .promo-info ul, .promo-terms ol {
    margin-left: 1.5rem;
}

.promo-terms li, .promo-info li {
    margin-bottom: 0.8rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.promo-info p {
    margin-bottom: 1.2rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* Blog Specific Styles */
.blog-main-img {
    margin: 2rem 0;
    text-align: center;
}

.blog-main-img img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hardware-detail {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.hardware-detail:last-child {
    border-bottom: none;
}

.hardware-detail h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.hardware-detail img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
    display: block;
}

.blog-text h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-text);
}

.promo-divider {
    border: none;
    border-top: 1px dashed var(--color-border);
    margin: 4rem auto;
    width: 60%;
}

.info-page-content {
    background-color: var(--color-bg);
    padding: 5rem 0;
    min-height: 50vh;
}

/* ========== FLOATING WHATSAPP ========== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .promo-container-layout {
        grid-template-columns: 1fr;
    }
    .page-title {
        text-align: center;
        margin-top: 3rem;
    }
    .promo-sidebar {
        position: static;
        text-align: center;
        border-bottom: 1px solid var(--color-border);
        padding-bottom: 3rem;
    }
    .header-left .lang-selector {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .section-title .view-all {
        position: relative;
        display: inline-block;
        margin-top: 1rem;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

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

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

    .about-container {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Collection Pages Styling */
.collection-hero {
    background-color: #fcfaf7; /* Soft cream background */
    padding: 100px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 40px;
}

.collection-title {
    font-family: var(--font-secondary);
    font-size: 3rem;
    color: var(--color-text-primary);
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.collection-desc {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.products-section {
    padding: 40px 0 100px;
}

/* Enhanced Product Card for Galleries */
.product-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-8px);
}

.product-image {
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 20px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

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

.product-info {
    text-align: center;
}

.product-name {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
    min-height: 2.7em;
}

.btn-inquire {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--color-primary);
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 1px solid var(--color-primary);
}

.btn-inquire:hover {
    background-color: transparent;
    color: var(--color-primary);
}

/* Dropdown Menu Improvements */
.dropdown-menu {
    min-width: 200px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
}

.dropdown-menu li a {
    padding: 12px 20px;
    font-size: 0.85rem;
    color: #555;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #f9f9f9;
    color: var(--color-primary);
    padding-left: 25px;
}

/* ========== PRODUCT DETAIL PAGE (PDP) ========== */
.pdp-breadcrumbs {
    padding: 2rem 0;
    font-size: 0.85rem;
    color: #666;
    letter-spacing: 0.05em;
}

.pdp-breadcrumbs a {
    color: #999;
    transition: color 0.3s ease;
}

.pdp-breadcrumbs a:hover {
    color: var(--color-primary);
}

.pdp-section {
    padding-bottom: 5rem;
}

.pdp-container {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.pdp-gallery-col {
    flex: 1.2;
    display: flex;
    gap: 1.5rem;
    position: sticky;
    top: 6rem;
}

.pdp-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 80px;
    flex-shrink: 0;
}

.pdp-thumb {
    width: 80px;
    height: 80px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdp-thumb:hover {
    opacity: 1;
}

.pdp-thumb.active {
    opacity: 1;
    border-color: var(--color-primary);
}

.pdp-main-image {
    flex: 1;
    background-color: transparent;
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.pdp-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-primary);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.gallery-arrow:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.gallery-arrow.prev {
    left: 10px;
}

.gallery-arrow.next {
    right: 10px;
}

.pdp-info-col {
    flex: 1;
    padding-top: 1rem;
}

.pdp-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.pdp-details-list {
    margin-bottom: 3rem;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem 0;
}

.pdp-detail-item {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.pdp-detail-item:last-child {
    margin-bottom: 0;
}

.detail-label {
    width: 120px;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.detail-value {
    color: #333;
}

.btn-inquire-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: 1.2rem;
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
    background-color: #25d366;
    color: white;
    border: 1px solid #25d366;
    transition: all 0.3s ease;
}

.btn-inquire-large:hover {
    background-color: #128c7e;
    color: white;
    border-color: #128c7e;
}

.btn-inquire-large i {
    font-size: 1.5rem;
}

.pdp-description {
    margin-bottom: 3rem;
    line-height: 1.8;
    color: #555;
}

.pdp-description h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
}

.pdp-description p {
    margin-bottom: 1rem;
}

/* Product Assurances */
.pdp-assurances {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.assurance-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.assurance-item i {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-top: 0.1rem;
}

.assurance-content h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--color-primary);
}

.assurance-content p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin: 0;
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #eee;
    color: var(--color-text-light);
    font-size: 0.75rem;
    cursor: pointer;
    margin-left: 0.5rem;
    position: relative;
    vertical-align: text-top;
}

.info-icon i {
    font-size: 0.75rem;
    color: inherit;
    margin: 0;
}

.info-icon:hover {
    background-color: var(--color-border);
}

.info-tooltip {
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 320px;
    background-color: var(--color-primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 400;
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    text-transform: none;
    letter-spacing: normal;
    text-align: left;
    line-height: 1.5;
}

.info-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: var(--color-primary) transparent transparent transparent;
}

.info-icon.active .info-tooltip,
.info-icon:hover .info-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}


.pdp-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #fcfcfc;
    border: 1px solid #f0f0f0;
}

.pdp-guarantee i {
    font-size: 2.5rem;
    color: #a89f91;
}

.pdp-guarantee h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.pdp-guarantee p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive updates for PDP */
@media (max-width: 900px) {
    .pdp-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    
    .pdp-gallery-col, .pdp-info-col, .pdp-main-content-wrapper {
        display: contents !important;
    }
    
    .pdp-title {
        order: 1;
        font-size: 1.8rem;
        margin-top: 0;
        margin-bottom: 1rem;
    }
    
    .pdp-main-image {
        order: 2;
        margin-bottom: 1rem;
    }
    
    .pdp-thumbnails {
        order: 3;
        width: 100%;
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        gap: 0.5rem;
        scroll-snap-type: x mandatory;
    }
    
    .pdp-thumb {
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    .pdp-price {
        order: 4;
        margin-bottom: 1rem;
    }
    
    #material-craft-container {
        order: 5;
    }
    
    .btn-inquire-large {
        order: 6;
        margin-bottom: 2rem;
    }
    
    .pdp-assurances {
        order: 7;
        margin-bottom: 2rem;
    }
    
    .pdp-tabs-container {
        order: 8;
        width: 100%;
    }
}

/* ========== RESPONSIVE MOBILE STYLES ========== */
@media (max-width: 900px) {
    /* Header */
    .mobile-menu-btn {
        display: block;
    }
    
    .search-form {
        border: none;
        background: transparent;
        position: relative;
    }
    .search-input {
        width: 0;
        padding: 0;
        opacity: 0;
        position: absolute;
        right: 100%;
        top: 50%;
        transform: translateY(-50%);
        background: white;
        border: 1px solid var(--color-border);
        height: 36px;
        transition: width 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
        z-index: 10;
        pointer-events: none;
    }
    .search-form.active .search-input {
        width: 200px;
        padding: 0 1rem;
        opacity: 1;
        pointer-events: auto;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        z-index: 1000;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        max-height: calc(100vh - 4rem);
        overflow-y: auto;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
        border-bottom: 1px solid var(--color-border);
    }
    
    .dropdown {
        padding: 0;
    }
    
    .dropdown > a {
        padding: 0.8rem 1.5rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        transform: none;
        border-top: none;
        padding: 0;
        background-color: var(--color-secondary);
        display: block;
    }
    
    .dropdown-menu a {
        padding: 0.6rem 2.5rem;
        font-size: 0.8rem;
    }

    /* Grids & Layouts */
    .blog-grid,
    .footer-grid,
    .about-container,
    .promo-container-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .showcase-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-title, .product-price .price-new {
        font-size: 0.95rem;
    }
    
    .product-price .price-old {
        font-size: 0.8rem;
    }
    
    .btn-inquire {
        font-size: 0.75rem;
        padding: 0.8rem;
    }
    
    .showcase-overlay {
        padding: 1.2rem;
    }
    
    .showcase-overlay h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .showcase-overlay .link-arrow {
        font-size: 0.75rem;
    }
    
    .promo-sidebar {
        position: static;
    }
    
    .about-gallery {
        grid-template-columns: 1fr !important;
    }
    
    .about-text {
        width: 100%;
    }
    
    .about-text .btn {
        display: block;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
    
    .header-left, .header-right {
        gap: 0.5rem;
    }
    
    /* Specific section adjustments */
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .promotion-content h2, 
    .about-text h2, 
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .slogan {
        font-size: 0.45rem;
        letter-spacing: 0;
        margin-top: 2px;
        line-height: 1.2;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .promotion-section {
        padding: 4rem 0;
    }
}

/* ========== PAGINATION ========== */
.pagination {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid var(--color-border);
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 1rem;
    border: 1px solid var(--color-border);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

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

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

.page-btn.prev, .page-btn.next {
    gap: 0.5rem;
    min-width: auto;
}

.page-dots {
    color: var(--color-text-light);
    padding: 0 0.5rem;
}

@media (max-width: 768px) {
    .pagination {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    
    .page-btn {
        min-width: 35px;
        height: 35px;
        font-size: 0.75rem;
        padding: 0 0.5rem;
    }
}

/* Fix mobile horizontal overflow and fit 2 columns */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    .product-grid, .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .product-card {
        padding: 10px;
    }
    .product-info {
        padding: 0 0.2rem;
    }
    .btn-inquire {
        padding: 8px 5px;
        font-size: 0.65rem;
        letter-spacing: 0;
        width: 100%;
        text-align: center;
        min-width: unset;
    }
    .product-title, .product-name {
        font-size: 0.8rem;
    }
    .price-new {
        font-size: 0.9rem;
    }
    .price-old {
        font-size: 0.7rem;
    }
}
/* Accordion Styles */
.pdp-accordion {
    width: 100%;
    border-top: 1px solid var(--color-border);
}

.accordion-item {
    border-bottom: 1px solid var(--color-border);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.2rem 0;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-primary);
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
}

.accordion-icon-minus {
    display: none;
}

.accordion-item.active .accordion-icon-plus {
    display: none;
}

.accordion-item.active .accordion-icon-minus {
    display: block;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
    padding: 0 0 1.5rem 0;
}

.accordion-content p, .accordion-content ul {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.accordion-content ul li {
    margin-bottom: 0.5rem;
}

/* ========== WHATSAPP CTA ========== */
.whatsapp-cta-section {
    padding: 3rem 1rem;
    background-color: var(--color-bg);
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.whatsapp-cta-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.whatsapp-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background-color: #25d366;
    color: white;
    padding: 0.8rem 2.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: 1px solid #25d366;
    border-radius: 4px;
}

.whatsapp-cta-btn:hover {
    background-color: #128c7e;
    border-color: #128c7e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-cta-btn i {
    font-size: 1.4rem;
}
