/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cardo', serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Cardo', serif;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
    position: relative;
    font-family: 'Cardo', serif;
    font-weight: 400;
    letter-spacing: 1.5px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #d4af37, #f4e7a1);
    margin: 1rem auto;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    font-family: 'Cardo', serif;
    font-weight: 400;
    letter-spacing: 0.8px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-family: 'Cardo', serif;
    font-weight: 400;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #d4af37;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #d4af37;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('./samples/9.jpeg') no-repeat left center,
        url('./samples/13.jpeg') no-repeat center center,
        url('./samples/14.jpeg') no-repeat right center;
    background-size: 
        auto 80%,
        auto 70%,
        auto 80%;
    opacity: 0.4;
    filter: grayscale(50%) blur(0.2px);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 247, 250, 0.4) 0%, rgba(195, 207, 226, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    font-weight: 400;
    font-family: 'Cardo', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #444;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
    font-weight: 400;
    font-family: 'Cardo', serif;
    letter-spacing: 1px;
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.1);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #d4af37, #f4e7a1);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #fff;
}

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

.about-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.skills {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

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

.skill-item i {
    font-size: 2rem;
    color: #d4af37;
    margin-top: 0.5rem;
}

.skill-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.skill-item p {
    color: #666;
    line-height: 1.6;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    border: 2px dashed #d4af37;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

/* Gallery Section */
.gallery {
    padding: 70px 0;
    background: #f8f9fa;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #d4af37;
    background: transparent;
    color: #d4af37;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #d4af37;
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item.hidden {
    display: none;
}

.gallery-image-container {
    position: relative;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.availability-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.availability-badge.available {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
}

.availability-badge.sold {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
}

.gallery-info {
    padding: 1.5rem;
}

.gallery-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 400;
    font-family: 'Cardo', serif;
    letter-spacing: 0.5px;
}

.gallery-product-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.product-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.detail-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.detail-value {
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 600;
}

.price-detail .detail-value.price {
    color: #d4af37;
    font-size: 1.1rem;
    font-weight: 700;
}

.gallery-description {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.gallery-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.gallery-size {
    color: #d4af37;
    font-weight: 600;
}

.gallery-category {
    background: #f0f0f0;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    color: #666;
    font-size: 0.85rem;
}

/* Contact Section */
.contact {
    padding: 50px 0;
    background: #fff;
}

.contact-content {
    display: flex;
    justify-content: center;
    margin-top: 0;
    padding: 2rem 0;
}

.order-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

.contact-info {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
    min-width: 200px;
}

.contact-item.primary-contact {
    padding: 2rem;
    width: 100%;
    text-align: center;
}

.contact-item.primary-contact h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-description {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-number {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.contact-email {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
}

.contact-email:hover {
    color: #d4af37;
    text-decoration: underline;
}

.contact-item i {
    font-size: 1.5rem;
    color: #d4af37;
    width: 40px;
}

.contact-item h3 {
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.submit-btn {
    padding: 15px 30px;
    background: linear-gradient(45deg, #d4af37, #f4e7a1);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #d4af37;
    font-family: 'Cardo', serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: #bbb;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #d4af37;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #f4e7a1;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: #bbb;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 2001;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.close-lightbox:hover {
    background: rgba(0, 0, 0, 0.7);
}

.lightbox-content {
    display: flex;
    max-width: 90%;
    max-height: 90%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    animation: lightboxZoom 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.lightbox-content img {
    max-width: 60%;
    height: auto;
    object-fit: contain;
    max-height: 80vh;
}

.lightbox-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lightbox-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
	margin-top: 6rem;
}

.lightbox-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-family: 'Cardo', serif;
    font-weight: 400;
    letter-spacing: 0.8px;
    line-height: 1.3;
}


.lightbox-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.lightbox-product-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.lightbox-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
}

.lightbox-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.lightbox-value {
    font-size: 0.95rem;
    color: #2c3e50;
    font-weight: 600;
}

.lightbox-value.price {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 700;
}

.lightbox-value.availability-status {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lightbox-value.availability-status.available {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
}

.lightbox-value.availability-status.sold {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
}

.lightbox-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.lightbox-details span {
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
}

.lightbox-share {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
	margin-bottom: 2rem;
}

.lightbox-share h4 {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: 'Cardo', serif;
    font-weight: 400;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.whatsapp-share {
    background: linear-gradient(45deg, #25d366, #128c7e);
}

.whatsapp-share:hover {
    background: linear-gradient(45deg, #128c7e, #075e54);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.messenger-share {
    background: linear-gradient(45deg, #0084ff, #0066cc);
}

.messenger-share:hover {
    background: linear-gradient(45deg, #0066cc, #004499);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 132, 255, 0.3);
}

.copy-link {
    background: linear-gradient(45deg, #6c757d, #495057);
}

.copy-link:hover {
    background: linear-gradient(45deg, #495057, #343a40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.email-share {
    background: linear-gradient(45deg, #dc3545, #c82333);
}

.email-share:hover {
    background: linear-gradient(45deg, #c82333, #a71e2a);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.share-btn i {
    font-size: 1.1rem;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    color: inherit;
    flex-direction: row-reverse; /* icon on the right */
    text-decoration: none; /* remove underline */
}

/* Ensure no underline in any state */
.whatsapp-link:hover,
.whatsapp-link:focus,
.whatsapp-link:active,
.whatsapp-link:visited {
    text-decoration: none;
    color: inherit;
}

/* Also prevent underline from inheriting to children */
.whatsapp-link *,
.whatsapp-text,
.whatsapp-text span {
    text-decoration: none !important;
}

.whatsapp-text {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    color: #1f2d3d;
    padding: 10px 14px;
    border-radius: 8px;
    line-height: 1;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.whatsapp-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
    margin: 0 0 0 10px; /* spacing from text */
}

.help-text, .chat-text {
    font-family: 'Cardo', serif;
    font-weight: 400; /* no bold */
    font-size: 0.95rem;
}

.help-text { margin-right: 6px; }

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile responsive for floating WhatsApp */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-link {
        padding: 12px 16px;
    }
    
    .whatsapp-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        margin-left: 8px;
    }
    
    .help-text {
        font-size: 0.8rem;
    }
    
    .chat-text {
        font-size: 1rem;
    }
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
    }
    to {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-item {
        flex-direction: row;
        text-align: left;
        min-width: auto;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    /* Fixed mobile lightbox layout */
    .lightbox {
        padding: 10px;
        align-items: flex-start;
        justify-content: center;
    }
    
    .lightbox-content {
        flex-direction: column;
        max-width: 100%;
        width: 100%;
        max-height: calc(100vh - 20px);
        height: auto;
        overflow: hidden;
        margin: 0;
        border-radius: 10px;
    }
    
    .lightbox-content img {
        max-width: 100%;
        width: 100%;
        height: auto;
        max-height: 50vh;
        min-height: 200px;
        object-fit: cover;
        display: block;
        border-bottom: 1px solid #eee;
    }
    
    .lightbox-info {
        padding: 1.5rem;
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: #fff;
        position: relative;
        z-index: 1;
        max-height: calc(50vh - 20px);
        min-height: 200px;
    }
    
    .close-lightbox {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .availability-badge {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .gallery-product-details {
        gap: 0.6rem;
    }
    
    .product-detail {
        padding: 0.4rem 0;
    }
    
    .lightbox-product-details {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .lightbox-detail {
        padding: 0.8rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }
    
    .lightbox-share {
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .share-buttons {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .share-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        flex: 1;
        min-width: calc(50% - 0.25rem);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 12px 30px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* Enhanced mobile lightbox for small screens */
    .lightbox {
        padding: 5px;
    }
    
    .lightbox-content {
        max-height: calc(100vh - 10px);
        border-radius: 8px;
    }
    
    .lightbox-content img {
        max-height: 45vh;
        min-height: 180px;
    }
    
    .lightbox-info {
        padding: 1rem;
        max-height: calc(55vh - 10px);
        min-height: 180px;
    }
    
    .lightbox-header {
        margin-bottom: 1rem;
        padding-bottom: 0.8rem;
    }
    
    .lightbox-info h3 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    
    
    .lightbox-detail {
        padding: 0.6rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .lightbox-label {
        font-size: 0.85rem;
    }
    
    .lightbox-value {
        font-size: 0.9rem;
    }
    
    .lightbox-value.price {
        font-size: 1rem;
    }
    
    .lightbox-share h4 {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .share-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        min-width: calc(50% - 0.25rem);
    }
    
    .lightbox-nav {
        padding: 0 0.5rem;
    }
    
    .nav-btn {
        padding: 0.6rem;
        font-size: 1rem;
    }
}

/* Highlights Section */
.highlights {
    background: #ffffff;
    padding: 30px 0 30px;
}

.highlights-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem; /* increased spacing between tiles */
    list-style: none;
    margin: 0;
    width: 100%;
    overflow: visible;
    padding-bottom: 0;
}

.highlight-item {
    background: #f8f9fa;
    border-left: 4px solid #d4af37;
    border-radius: 10px;
    padding: 7px 16px 21px; /* reduced top by 50%, added to bottom */
    color: #2c3e50;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: auto;
}

.highlight-icon {
    font-size: 2rem;
    line-height: 1;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-text {
    flex: 1;
}

.highlight-title {
    font-weight: 700;
    color: #1f2d3d;
    letter-spacing: 0.2px;
    display: block;
    line-height: 1.25;
}

.highlight-sub {
    color: #5c6b7a;
    font-weight: 500;
    display: block;
    line-height: 1.25;
}

/* Tablet: 3 columns */
@media (max-width: 1100px) {
    .highlights-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem; /* slightly larger than before for clarity */
    }
}

/* Mobile: 1 column */
@media (max-width: 768px) {
    .highlights {
        padding: 35px 0 5px;
    }
    .highlights-list {
        grid-template-columns: 1fr;
        gap: 1rem; /* comfortable spacing on mobile */
    }
    .highlight-item {
        padding: 6px 14px 18px; /* reduce top by 50%, add to bottom */
        font-size: 0.95rem;
    }
    .highlight-icon {
        font-size: 1.8rem;
        flex-basis: 32px;
        width: 32px;
        height: 32px;
    }
}

/* Tablet adjustments */
@media (max-width: 992px) {
    .navbar {
        padding: 0.75rem 0;
    }
    .nav-container {
        padding: 0 16px;
    }
    .nav-logo h2 {
        font-size: 1.3rem;
    }
    .gallery {
        padding: 70px 0;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
    }
    .gallery-image {
        height: 220px;
    }
}

/* Small phone fine-tuning */
@media (max-width: 576px) {
    .navbar {
        padding: 0.6rem 0;
    }
    .nav-logo h2 {
        font-size: 1.1rem;
    }
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 1.2px;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .cta-button {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
    .gallery {
        padding: 60px 0;
    }
    .filters {
        gap: 0.4rem;
    }
    .filter-btn {
        padding: 7px 12px;
        font-size: 0.85rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .gallery-image {
        height: 200px;
    }
    .gallery-title {
        font-size: 1.1rem;
    }
    .product-detail {
        padding: 0.35rem 0;
    }
    .availability-badge {
        top: 8px;
        right: 8px;
        padding: 5px 10px;
        font-size: 0.7rem;
    }
    .highlights {
        padding: 28px 0 0;
    }
    .highlight-item {
        font-size: 0.95rem;
        padding: 10px 12px;
    }
    .contact-item.primary-contact h3 {
        font-size: 1.5rem;
    }
    .contact-number {
        font-size: 1.2rem;
    }
    .footer {
        padding: 35px 0 15px;
    }
}

.nav-logo-link {
    color: inherit;
    text-decoration: none;
}

.nav-logo-link:hover {
    color: #d4af37;
}