/* Product Page Styles - Vaults33 Theme */
.product-details-wrapper {
    padding: 60px 0;
    background: var(--white);
}

/* Breadcrumb */
.breadcrumb-area {
    background: var(--gray-light);
    padding: 20px 0;
    border-bottom: 1px solid var(--gray);
}

.breadcrumb-wrap {
    padding: 10px 0;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.breadcrumb-item {
    font-size: 14px;
    color: var(--gray-dark);
}

.breadcrumb-item a {
    color: var(--gray-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--gold);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--gold);
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: var(--gray-dark);
    padding: 0 8px;
}

/* Product Details Inner */
.product-details-inner {
    margin-bottom: 60px;
}

/* Product Images - Fixed Layout */
.product-images-container {
    position: relative;
}

.product-large-slider {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: var(--white);
}

.pro-large-img {
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.pro-large-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.pro-large-img:hover img {
    transform: scale(1.05);
}

/* Thumbnail Navigation */
.pro-nav {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.pro-nav-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro-nav-thumb.active,
.pro-nav-thumb:hover {
    border-color: var(--gold);
}

.pro-nav-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-details-des {
    padding-left: 40px;
}

.product-details-des h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-details-des h3 a {
    color: var(--black);
    text-decoration: none;
}

.product-details-des h3 a:hover {
    color: var(--gold);
}

/* Ratings */
.ratings {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.ratings i {
    color: var(--gold);
    font-size: 16px;
}

.ratings .good {
    color: var(--gold);
}

/* Price */
.pricebox {
    margin-bottom: 20px;
}

.regular-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.regular-price del {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-right: 10px;
}

/* Product Description */
.product-details-des p {
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Product Options - Fixed Layout */
.product-options {
    margin: 25px 0;
}

.option-group {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.option-label {
    font-weight: 600;
    color: var(--black);
    font-size: 14px;
    min-width: 100px;
}

.option-select {
    border: 2px solid var(--gray);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    background: var(--white);
    color: var(--black);
    min-width: 200px;
    transition: border-color 0.3s ease;
}

.option-select:focus {
    outline: none;
    border-color: var(--gold);
}

/* Quantity Selector */
.quantity-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.quantity-label {
    font-weight: 600;
    color: var(--black);
    font-size: 14px;
    min-width: 100px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid var(--gray);
    border-radius: 8px;
    overflow: hidden;
}

.quantity-btn {
    width: 40px;
    height: 50px;
    border: none;
    background: var(--gray-light);
    color: var(--black);
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.quantity-input {
    width: 60px;
    height: 50px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    background: var(--white);
}

.quantity-input:focus {
    outline: none;
}

/* Add to Cart Button */
.action-section {
    margin: 30px 0;
}

.buy-btn {
    background: var(--gold);
    color: var(--black);
    border: 2px solid var(--gold);
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
    font-size: 16px;
}

.buy-btn:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--black);
    text-decoration: none;
    transform: translateY(-2px);
}

.buy-btn i {
    font-size: 18px;
}

/* Share Icons */
.share-icon {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--gray);
}

.share-icon .sharethis-inline-share-buttons {
    margin-top: 10px;
}

/* Product Tabs - Fixed Table Layout */
.product-details-reviews {
    margin: 50px 0;
}

.review-tab {
    border-bottom: 2px solid var(--gray);
    margin-bottom: 30px;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.review-tab li {
    margin-right: 30px;
}

.review-tab a {
    color: var(--gray-dark);
    text-decoration: none;
    padding: 15px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.review-tab a.active,
.review-tab a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.tab-content {
    padding: 30px 0;
}

.tab-one p {
    color: var(--gray-dark);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Reviews Section - Fixed Table Layout */
.review-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.review-table th {
    background: var(--black-light);
    color: var(--gold);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--gold);
}

.review-table td {
    padding: 15px;
    border-bottom: 1px solid var(--gray-light);
    color: var(--gray-dark);
}

.review-table tr:last-child td {
    border-bottom: none;
}

.review-table .rating {
    display: flex;
    gap: 3px;
}

.review-table .rating i {
    color: var(--gold);
    font-size: 14px;
}

/* Review Form */
.rating-section {
    margin-bottom: 20px;
}

.rating-section label {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
    display: block;
}

.rating-stars {
    display: flex;
    gap: 10px;
    margin: 10px 0;
    align-items: center;
}

.rating-stars input[type="radio"] {
    display: none;
}

.rating-stars label {
    font-size: 24px;
    color: var(--gray);
    cursor: pointer;
    transition: color 0.3s ease;
    margin: 0;
    padding: 5px;
}

.rating-stars input[type="radio"]:checked ~ label,
.rating-stars label:hover,
.rating-stars label:hover ~ label {
    color: var(--gold);
}

.review-form {
    background: var(--gray-light);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--gray);
    margin-top: 20px;
}

.review-form .form-group {
    margin-bottom: 20px;
}

.review-form textarea {
    width: 100%;
    border: 2px solid var(--gray);
    border-radius: 8px;
    padding: 15px;
    font-size: 14px;
    resize: vertical;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.review-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.sqr-btn {
    background: var(--gold);
    color: var(--black);
    border: 2px solid var(--gold);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.sqr-btn:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
}

/* Related Products - Horizontal Scroll */
.related-products-area {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid var(--gray);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title .title-icon {
    background: var(--gold);
    color: var(--black);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.section-title h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title h4 {
    color: var(--gold-dark);
    font-size: 1.1rem;
    font-weight: 400;
}

/* Related Products Grid - Horizontal Scroll */
.related-products-container {
    position: relative;
    overflow: hidden;
}

.featured-carousel-active {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
    margin: -20px -10px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--gray-light);
}

.featured-carousel-active::-webkit-scrollbar {
    height: 8px;
}

.featured-carousel-active::-webkit-scrollbar-track {
    background: var(--gray-light);
    border-radius: 4px;
}

.featured-carousel-active::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

.featured-carousel-active::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

.product-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    min-width: 280px;
    flex-shrink: 0;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-thumb {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .product-thumb img {
    transform: scale(1.05);
}

.product-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-action-link {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    padding: 15px;
    gap: 10px;
    transition: bottom 0.3s ease;
    z-index: 3;
}

.product-item:hover .product-action-link {
    bottom: 0;
}

.product-action-link a {
    color: var(--white);
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    transition: all 0.3s ease;
}

.product-action-link a:hover {
    background: var(--gold);
    color: var(--black);
}

.product-content {
    padding: 20px;
}

.product-content h4 {
    margin-bottom: 10px;
}

.product-content h4 a {
    color: var(--black);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-content h4 a:hover {
    color: var(--gold);
    text-decoration: none;
}

.product-content .pricebox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.product-content .regular-price {
    font-size: 1.2rem;
}

.product-content .ratings {
    justify-content: flex-start;
}

/* Scroll Buttons for Related Products */
.scroll-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.scroll-btn {
    background: var(--gold);
    color: var(--black);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.scroll-btn:hover {
    background: var(--gold-dark);
    transform: scale(1.1);
}

.scroll-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-details-wrapper {
        padding: 30px 0;
    }
    
    .product-details-des {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .pro-large-img {
        height: 400px;
    }
    
    .product-details-des h3 {
        font-size: 1.5rem;
    }
    
    .regular-price {
        font-size: 1.5rem;
    }
    
    .option-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .option-label {
        min-width: auto;
    }
    
    .option-select {
        min-width: 100%;
    }
    
    .quantity-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .quantity-label {
        min-width: auto;
    }
    
    .review-tab {
        flex-direction: column;
        gap: 10px;
    }
    
    .review-tab li {
        margin-right: 0;
    }
    
    .review-table {
        display: block;
        overflow-x: auto;
    }
    
    .featured-carousel-active {
        gap: 20px;
    }
    
    .product-item {
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .pro-large-img {
        height: 300px;
    }
    
    .pro-nav-thumb {
        width: 60px;
        height: 60px;
    }
    
    .product-details-des h3 {
        font-size: 1.3rem;
    }
    
    .regular-price {
        font-size: 1.3rem;
    }
    
    .product-item {
        min-width: 220px;
    }
    
    .review-form {
        padding: 20px;
    }
}

/* Product Image Gallery */
.product-images-container {
    position: relative;
}

.product-large-slider {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: var(--white);
    position: relative;
    height: 500px;
}

.pro-large-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pro-large-img.active {
    opacity: 1;
    z-index: 2;
}

.pro-large-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.pro-large-img:hover img {
    transform: scale(1.05);
}

/* Image Zoom Effect */
.img-zoom {
    position: relative;
    overflow: hidden;
}

.img-zoom:hover img {
    transform: scale(1.2);
}

/* Thumbnail Navigation */
.pro-nav {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.pro-nav-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pro-nav-thumb.active {
    border-color: var(--gold);
    transform: scale(1.05);
}

.pro-nav-thumb:hover {
    border-color: var(--gold);
    transform: scale(1.05);
}

.pro-nav-thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 175, 55, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pro-nav-thumb.active::after,
.pro-nav-thumb:hover::after {
    opacity: 1;
}

.pro-nav-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Image Gallery Controls */
.gallery-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-images-container:hover .gallery-controls {
    opacity: 1;
}

.gallery-btn {
    background: rgba(0,0,0,0.7);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.gallery-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}

/* Fullscreen Image View */
.pro-large-img.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pro-large-img.fullscreen img {
    max-width: 90%;
    max-height: 90%;
    cursor: zoom-out;
}

.fullscreen-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--black);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Loading State for Images */
.pro-large-img.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid var(--gray-light);
    border-top: 3px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 2;
}

.pro-large-img.loading img {
    opacity: 0.3;
}


/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    border-bottom: 3px solid var(--gold);
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--gold-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-main {
    padding: 80px 0;
    background: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-section {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 2px solid var(--gold);
}

.contact-form-header {
    margin-bottom: 30px;
    text-align: center;
}

.contact-form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.contact-form-header p {
    color: var(--gray-dark);
    font-size: 1.1rem;
}

.contact-info-section {
    background: var(--black);
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid var(--gold);
}

.contact-info-header {
    margin-bottom: 30px;
    text-align: center;
}

.contact-info-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.contact-info-header p {
    color: var(--gold-light);
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    margin-bottom: 20px;
    background: var(--black-light);
    border-radius: 10px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(10px);
    background: var(--black-lighter);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 24px;
    flex-shrink: 0;
}

.contact-info-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gold);
}

.contact-info-content p,
.contact-info-content a {
    color: var(--gold-light);
    text-decoration: none;
    line-height: 1.6;
    margin: 0;
}

.contact-info-content a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Form Styles */
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--black);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-label.required::after {
    content: " *";
    color: #dc3545;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--gray);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--white);
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.submit-btn {
    background: var(--gold);
    color: var(--black);
    border: 2px solid var(--gold);
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: inherit;
}


.submit-btn:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Alert Messages */
.alert-message {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-weight: 500;
    border-left: 4px solid;
}

.alert-error {
    background: #fee;
    border-color: #dc3545;
    color: #721c24;
}

.alert-success {
    background: #eff8f0;
    border-color: #28a745;
    color: #155724;
}

.alert-message i {
    margin-right: 10px;
}

/* Map Section */
.map-section {
    padding: 0;
    background: var(--gray-light);
}

.map-container {
    width: 100%;
    height: 450px;
    border: none;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Business Hours */
.business-hours {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--black-lighter);
}

.business-hours h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--black-lighter);
    color: var(--gold-light);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-container {
        gap: 30px;
    }
    
    .contact-form-section,
    .contact-info-section {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0;
    }
    
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-main {
        padding: 40px 0;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-header h2,
    .contact-info-header h2 {
        font-size: 1.6rem;
    }
    
    .contact-info-item {
        padding: 20px;
    }
    
    .contact-info-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .map-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 40px 0;
    }
    
    .contact-hero h1 {
        font-size: 1.8rem;
    }
    
    .contact-hero p {
        font-size: 1rem;
    }
    
    .contact-form-section,
    .contact-info-section {
        padding: 25px 20px;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .form-control {
        padding: 12px 15px;
    }
    
    .submit-btn {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .map-container {
        height: 300px;
    }
}

/* Form Validation Styles */
.form-control.error {
    border-color: #dc3545;
}

.form-control.valid {
    border-color: #28a745;
}

.form-hint {
    font-size: 12px;
    color: var(--gray-dark);
    margin-top: 5px;
    display: block;
}

/* Loading State */
.submit-btn.loading {
    position: relative;
    color: transparent;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--black);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Social Links */
.contact-social {
    margin-top: 30px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--black-light);
    color: var(--gold);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.social-link:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}


/* Customer Dashboard Styles */
.dashboard-hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    padding: 60px 0;
    color: var(--white);
    border-bottom: 3px solid var(--gold);
}

.dashboard-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.dashboard-welcome h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gold);
}

.dashboard-welcome p {
    font-size: 1.1rem;
    color: var(--gold-light);
    margin: 0;
}

.dashboard-stats {
    display: flex;
    gap: 20px;
}

.stat-item {
    background: var(--black-light);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--gold);
    text-align: center;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-container {
    padding: 60px 0;
    background: var(--gray-light);
}

.dashboard-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}

/* Sidebar Styles */
.dashboard-sidebar {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border: 2px solid var(--gold);
    overflow: hidden;
}

.user-profile {
    background: var(--black);
    padding: 30px 20px;
    text-align: center;
    border-bottom: 3px solid var(--gold);
}

.user-avatar {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--black);
    font-weight: 700;
}

.user-name {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.user-email {
    color: var(--gold-light);
    font-size: 0.9rem;
}

.sidebar-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.menu-item {
    border-bottom: 1px solid var(--gray-light);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.menu-link i {
    color: var(--gold);
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.menu-link:hover,
.menu-item.active .menu-link {
    background: var(--gold);
    color: var(--black);
}

.menu-link:hover i,
.menu-item.active .menu-link i {
    color: var(--black);
}

.logout-link {
    color: #dc3545 !important;
}

.logout-link i {
    color: #dc3545 !important;
}

.logout-link:hover {
    background: #dc3545 !important;
    color: var(--white) !important;
}

.logout-link:hover i {
    color: var(--white) !important;
}

/* Dashboard Content */
.dashboard-content {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border: 2px solid var(--gold);
    overflow: hidden;
}

.dashboard-header {
    background: var(--black);
    padding: 25px 30px;
    border-bottom: 3px solid var(--gold);
}

.dashboard-header h2 {
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.dashboard-body {
    padding: 40px;
}

.welcome-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--gray);
    margin-bottom: 30px;
}

.welcome-section h3 {
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.welcome-message {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.welcome-text {
    flex: 1;
}

.welcome-text p {
    color: var(--gray-dark);
    margin: 0;
    font-size: 1.1rem;
}

.welcome-text strong {
    color: var(--gold);
}

.logout-btn {
    background: var(--black);
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.logout-btn:hover {
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
}

/* Quick Stats */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    border: 2px solid var(--gray-light);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--gold);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--black);
}

.stat-card h4 {
    color: var(--black);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-number-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-description {
    color: var(--gray-dark);
    font-size: 0.9rem;
    margin: 0;
}

/* Recent Activity */
.recent-activity {
    margin-bottom: 40px;
}

.section-title {
    color: var(--black);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.activity-list {
    background: var(--gray-light);
    border-radius: 10px;
    padding: 20px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 4px solid var(--gold);
}

.activity-item:last-child {
    margin-bottom: 0;
}

.activity-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1rem;
}

.activity-content {
    flex: 1;
}

.activity-text {
    color: var(--black);
    font-weight: 500;
    margin-bottom: 5px;
}

.activity-time {
    color: var(--gray-dark);
    font-size: 0.85rem;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.action-btn {
    background: var(--white);
    border: 2px solid var(--gold);
    color: var(--black);
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 600;
}

.action-btn:hover {
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.action-btn i {
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.action-btn:hover i {
    color: var(--black);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dashboard-wrapper {
        grid-template-columns: 250px 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .dashboard-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .dashboard-stats {
        justify-content: center;
    }
    
    .dashboard-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .dashboard-sidebar {
        order: 2;
    }
    
    .dashboard-content {
        order: 1;
    }
    
    .quick-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .welcome-message {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-number-large {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .dashboard-hero {
        padding: 40px 0;
    }
    
    .dashboard-hero h1 {
        font-size: 2rem;
    }
    
    .dashboard-container {
        padding: 30px 0;
    }
    
    .dashboard-body {
        padding: 25px 20px;
    }
    
    .dashboard-header {
        padding: 20px;
    }
    
    .dashboard-header h2 {
        font-size: 1.5rem;
    }
    
    .welcome-section {
        padding: 20px;
    }
    
    .quick-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
    }
}

/* Empty state styling */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray-dark);
}

.empty-state i {
    font-size: 3rem;
    color: var(--gray);
    margin-bottom: 15px;
    display: block;
}

.empty-state h4 {
    color: var(--black);
    margin-bottom: 10px;
}

.empty-state p {
    margin-bottom: 20px;
}

/* Loading states */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}




/* Wishlist Page Styles */
.wishlist-hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    border-bottom: 3px solid var(--gold);
}

.wishlist-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gold);
}

.wishlist-hero p {
    font-size: 1.1rem;
    color: var(--gold-light);
    max-width: 600px;
    margin: 0 auto;
}

.wishlist-container {
    padding: 80px 0;
    background: var(--gray-light);
    min-height: 60vh;
}

.wishlist-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}

/* Wishlist Sidebar */
.wishlist-sidebar {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border: 2px solid var(--gold);
    overflow: hidden;
}


/* Wishlist Main Content */
.wishlist-main {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border: 2px solid var(--gold);
    overflow: hidden;
}

.wishlist-header {
    background: var(--black);
    padding: 25px 30px;
    border-bottom: 3px solid var(--gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wishlist-header h2 {
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.wishlist-count {
    color: var(--gold-light);
    font-size: 1rem;
}

.wishlist-body {
    padding: 40px;
}

/* Alert Messages */
.alert-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-error {
    background: #fee;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert-success {
    background: #eff8f0;
    border: 1px solid #c3e6cb;
    color: #155724;
}

/* Wishlist Items */
.wishlist-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wishlist-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.wishlist-item:hover {
    border-color: var(--gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.wishlist-item-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.wishlist-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-item-details {

    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wishlist-item-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.wishlist-item-info h3 a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.wishlist-item-info h3 a:hover {
    color: var(--gold);
    text-decoration: none;
}

.wishlist-item-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.wishlist-item-old-price {
    font-size: 1rem;
    color: var(--gray-dark);
    text-decoration: line-through;
    margin-right: 10px;
}

.wishlist-item-stock {
    font-size: 0.9rem;
    font-weight: 500;
}

.in-stock {
    color: #28a745;
}

.out-of-stock {
    color: #dc3545;
}

.wishlist-item-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.action-btn {
    padding: 10px 20px;
    border: 2px solid var(--gold);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-move-cart {
    background: var(--gold);
    color: var(--black);
}

.btn-move-cart:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--black);
    text-decoration: none;
}

.btn-remove {
    background: transparent;
    color: #dc3545;
    border-color: #dc3545;
}

.btn-remove:hover {
    background: #dc3545;
    color: var(--white);
    text-decoration: none;
}

.remove-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--gray-dark);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn:hover {
    background: #fee;
    color: #dc3545;
}

/* Empty Wishlist */
.empty-wishlist {
    text-align: center;
    padding: 60px 40px;
    color: var(--gray-dark);
}

.empty-wishlist i {
    font-size: 4rem;
    color: var(--gray);
    margin-bottom: 20px;
    display: block;
}

.empty-wishlist h3 {
    color: var(--black);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.empty-wishlist p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.btn-shop {
    background: var(--gold);
    color: var(--black);
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-shop:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--black);
    text-decoration: none;
    transform: translateY(-2px);
}

/* Wishlist Actions */
.wishlist-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.continue-shopping {
    color: var(--gray-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.continue-shopping:hover {
    color: var(--gold);
    text-decoration: none;
}

.clear-wishlist {
    background: transparent;
    border: 2px solid #dc3545;
    color: #dc3545;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.clear-wishlist:hover {
    background: #dc3545;
    color: var(--white);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .wishlist-content {
        grid-template-columns: 250px 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .wishlist-hero {
        padding: 40px 0;
    }
    
    .wishlist-hero h1 {
        font-size: 2rem;
    }
    
    .wishlist-container {
        padding: 40px 0;
    }
    
    .wishlist-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .wishlist-sidebar {
        order: 2;
    }
    
    .wishlist-main {
        order: 1;
    }
    
    .wishlist-body {
        padding: 25px;
    }
    
    .wishlist-header {
        padding: 20px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .wishlist-item {
        flex-direction: column;
        text-align: center;
    }
    
    .wishlist-item-image {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .wishlist-item-actions {
        justify-content: center;
    }
    
    .wishlist-actions {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .wishlist-body {
        padding: 20px 15px;
    }
    
    .wishlist-item {
        padding: 20px;
    }
    
    .wishlist-item-actions {
        flex-direction: column;
    }
    
    .action-btn {
        justify-content: center;
    }
    
    .empty-wishlist {
        padding: 40px 20px;
    }
    
    .empty-wishlist i {
        font-size: 3rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wishlist-item {
    animation: fadeIn 0.5s ease-out;
}
/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    border-bottom: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23D4AF37" opacity="0.1"><polygon points="1000,100 1000,0 0,100"/></svg>');
    background-size: cover;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-hero p {
    font-size: 1.2rem;
    color: var(--gold-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-container {
    padding: 100px 0;
    background: var(--white);
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text-content {
    padding-right: 30px;
}

.about-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 25px;
    line-height: 1.2;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.about-description {
    color: var(--gray-dark);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.about-features {
    margin: 40px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.feature-icon {
    background: var(--gold);
    color: var(--black);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--gray-dark);
    margin: 0;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: var(--gray-light);
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About Image Styles */
.about-image-content {
    position: relative;
}

.about-main-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 3px solid var(--gold);
}

.about-main-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: var(--gold);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.3;
}

.about-main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-main-image:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--black);
    color: var(--gold);
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 2;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    color: var(--white);
    position: relative;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23D4AF37" opacity="0.05"><polygon points="0,0 1000,100 0,100"/></svg>');
    background-size: cover;
}

.mission-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mission-icon {
    background: var(--gold);
    color: var(--black);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 30px;
}

.mission-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 25px;
}

.mission-text {
    font-size: 1.1rem;
    color: var(--gold-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.value-icon {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.value-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.value-description {
    color: var(--gold-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-dark);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text-content {
        padding-right: 0;
        text-align: center;
    }
    
    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-feature {
        text-align: left;
    }
    
    .mission-values {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .about-container {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .mission-section {
        padding: 60px 0;
    }
    
    .mission-title {
        font-size: 1.8rem;
    }
    
    .mission-values {
        grid-template-columns: 1fr;
    }
    
    .team-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
    
    .about-title {
        font-size: 1.6rem;
    }
    
    .about-feature {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .image-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 20px;
        text-align: center;
    }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Breadcrumb Override */
.breadcrumb-area {
    background: var(--gray-light);
    padding: 20px 0;
    border-bottom: 1px solid var(--gray);
}

.breadcrumb-item a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--gold-dark);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--black);
}