﻿.ultra-heading {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    letter-spacing: 2px;
    line-height: 1;
}

.ultra-body {
    font-family: 'Karla', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .ultra-heading {
        font-size: 3rem;
    }

    .ultra-body {
        font-size: 1rem;
    }
}


/* Policy section overlay - simple border only */
.policy-page3 {
    position: relative;
    margin-top: -120px;
    z-index: 10;
    background: white;
}

/* Remove any unwanted borders */
/*.ca-menu,
.ca-menu li,
.ca-menu a {
    border: none !important;
    outline: none !important;
}*/

/* Mobile responsive */
@media (max-width: 768px) {
    .policy-page3 {
        margin-top: 0;
        margin-left: 10px;
        margin-right: 10px;
        padding: 20px 10px;
    }
}






/*Products Style*/

/* Product Grid Styles */
.product-item-wrapper {
    display: flex;
}

.product-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

    .product-card:hover {
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

/* Fixed aspect ratio image container */
.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 aspect ratio - adjust as needed */
    background: #f8f8f8;
    overflow: hidden;
}

.product-image-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Labels positioning */
.ico-label {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ico-product {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    color: #fff;
}

.ico-new {
    background-color: #4CAF50;
}

.ico-sale {
    background-color: #ff5252;
}

/* Product info section */
.product-info {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    margin: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.4;
    min-height: 2.8em; /* Ensures consistent height for 2 lines */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

    .product-title a {
        color: #333;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .product-title a:hover {
            color: #000;
            text-decoration: none;
        }

/* Bootstrap 4 grid adjustments */
@media (min-width: 1200px) {
    .col-lg-2d4 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Ensure row is using flexbox */
.products-grid.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

/* Fix for older Bootstrap compatibility */
@media (max-width: 575px) {
    .col-xs-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-phone-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


.tag {
    transform: rotate(-45deg);
    position: absolute;
    top: 0;
    left: 0;
    background: green;
    color: white;
    font-size: 10px;
}



/*More Button*/


.btn-more {
    background-color: #333;
    color: #fff;
    padding: 10px 40px;
    font-size: 16px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

    .btn-more:hover {
        background-color: #555;
        color: #fff;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

.sns_producttaps_wraps .text-center {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}



/* Hide owl dots for sns_slideshows31 on all screen sizes */
/*.owl-dots {
    display: none !important;
}

.owl-nav {
    display: none !important;
}*/

/* Simple Solution - Keep the space but hide the elements */
.owl-dots {
    visibility: hidden;
}

.owl-nav {
    visibility: hidden;
}